summaryrefslogtreecommitdiff
path: root/js/codeq/change_password.js
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@fri.uni-lj.si>2016-02-26 17:03:53 +0100
committerTimotej Lazar <timotej.lazar@fri.uni-lj.si>2016-02-26 17:03:53 +0100
commitaf6f38e8ad6bfcc5410646ee070d05f8ab0783db (patch)
tree40160ac2c80040495cdee714aeb462e5fa65437f /js/codeq/change_password.js
parent108ca120edfbb3ae8ed1da08a9f80553f3325d13 (diff)
Use a consistent naming style for DOM IDs
Diffstat (limited to 'js/codeq/change_password.js')
-rw-r--r--js/codeq/change_password.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/js/codeq/change_password.js b/js/codeq/change_password.js
index 20c26d5..562f4b2 100644
--- a/js/codeq/change_password.js
+++ b/js/codeq/change_password.js
@@ -22,11 +22,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
*/
(function(){
"use strict";
- var jqScreen = $("#screen_change_pass"),
- jqNew = $("#modalChangePasswordNew"),
- jqVerify = $("#modalChangePasswordVerify"),
- jqCancelBtn = $("#cancel_change_pass_button"),
- jqChangePassForm = $('#formChangePassword');
+ var jqScreen = $('#screen-change-pass'),
+ jqNew = $('#change-password-new'),
+ jqVerify = $('#change-password-verify'),
+ jqCancelBtn = $('#change-password-cancel'),
+ jqChangePassForm = $('#change-password-form');
codeq.globalStateMachine.register('changePassword',{
'jqScreen': jqScreen,