Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-jams
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-jams
Commits
41ba14b4
Commit
41ba14b4
authored
4 years ago
by
William Enright
Browse files
Options
Downloads
Patches
Plain Diff
fixed various issues, still wip
Change-Id: If0c8db1c37be99dd4acbfec51f1df24fc834faf0
parent
1cfd8cdc
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
jams-server/src/main/resources/webapp/js/auth.js
+1
-1
1 addition, 1 deletion
jams-server/src/main/resources/webapp/js/auth.js
jams-server/src/main/resources/webapp/js/server-parameters.js
+3
-3
3 additions, 3 deletions
...-server/src/main/resources/webapp/js/server-parameters.js
with
4 additions
and
4 deletions
jams-server/src/main/resources/webapp/js/auth.js
+
1
−
1
View file @
41ba14b4
...
...
@@ -28,7 +28,7 @@
// create Admin
if
(
data
.
getResponseHeader
(
'
showLogin
'
)
==
"
false
"
)
{
var
inputConfirmPassword
=
'
<div class="form-label-group"><label for="confirmPassword" class="label-title">Confirm Password</label><input type="password" name="confirmPassword" id="inputConfirmPassword" class="form-control" required autocomplete="off"><span id="message"></span></div>
'
;
var
inputConfirmPassword
=
'
<div class="form-label-group"><label for="confirmPassword" class="label-title">Confirm Password</label><input type="password" name="confirmPassword"
id="inputConfirmPassword" class="form-control" required autocomplete="off"><span id="message"></span></div>
'
;
admin_account
=
false
;
$
(
'
.title
'
).
text
(
"
Administrator account creation
"
);
$
(
'
.subtitle
'
).
text
(
"
Create the account that will have administrative control over JAMS.
"
);
...
...
This diff is collapsed.
Click to expand it.
jams-server/src/main/resources/webapp/js/server-parameters.js
+
3
−
3
View file @
41ba14b4
...
...
@@ -65,9 +65,9 @@ $('#deviceLifetime').on('change', function() {
function
setParametersData
(
form
)
{
var
data
=
{};
$
.
each
(
$
(
form
).
serializeArray
(),
function
(
i
,
field
)
{
data
[
field
.
name
]
=
parseInt
(
field
.
value
);
});
$
.
each
(
$
(
form
).
serializeArray
(),
function
(
i
,
field
)
{
data
[
field
.
name
]
=
parseInt
(
field
.
value
);
});
if
(
$
(
'
#sipContents
'
).
val
()
!=
""
)
data
[
'
sipConfig
'
]
=
$
(
'
#sipContents
'
).
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
register
or
sign in
to comment