Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
vtigercrm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
Welcome to Vtiger Community. To gain access for account, please contact [ community @ vtiger.com ]
Show more breadcrumbs
Daniel Lennartz
vtigercrm
Commits
d4237ce5
Commit
d4237ce5
authored
Oct 22, 2015
by
Adrián Granado
Browse files
Options
Downloads
Patches
Plain Diff
fix checkbox while going back after submit
parent
51130a02
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
layouts/vlayout/modules/Install/resources/Index.js
+7
-0
7 additions, 0 deletions
layouts/vlayout/modules/Install/resources/Index.js
with
7 additions
and
0 deletions
layouts/vlayout/modules/Install/resources/Index.js
+
7
−
0
View file @
d4237ce5
...
...
@@ -43,6 +43,12 @@ jQuery.Class('Install_Index_Js', {}, {
else
password
.
addClass
(
'
hide
'
);
});
if
(
jQuery
(
'
input[name="create_db"]
'
).
prop
(
'
checked
'
))
{
jQuery
(
'
#root_user
'
).
removeClass
(
"
hide
"
);
jQuery
(
'
#root_password
'
).
removeClass
(
"
hide
"
);
}
function
clearPasswordError
()
{
jQuery
(
'
#passwordError
'
).
html
(
''
);
}
...
...
@@ -51,6 +57,7 @@ jQuery.Class('Install_Index_Js', {}, {
jQuery
(
'
#passwordError
'
).
html
(
'
Please re-enter passwords. The
\
"Password
\
" and
\
"Re-type password
\
" values do not match.
'
);
}
//This is not an event, we check if create_db is checked
jQuery
(
'
input[name="retype_password"]
'
).
on
(
'
blur
'
,
function
(
e
){
var
element
=
jQuery
(
e
.
currentTarget
);
var
password
=
jQuery
(
'
input[name="password"]
'
).
val
();
...
...
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment