From af6f38e8ad6bfcc5410646ee070d05f8ab0783db Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Fri, 26 Feb 2016 17:03:53 +0100 Subject: Use a consistent naming style for DOM IDs --- js/codeq/profile.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'js/codeq/profile.js') diff --git a/js/codeq/profile.js b/js/codeq/profile.js index 4b2f9ce..79a9bf5 100644 --- a/js/codeq/profile.js +++ b/js/codeq/profile.js @@ -21,9 +21,9 @@ along with this program. If not, see . */ (function(){ "use strict"; - var jqScreen = $("#screen_profile"), - jqBtnChangePass = $("#change_pass_profile"), - jqBtnGoBack = $("#btnProfileGoBack"); + var jqScreen = $("#screen-profile"), + jqBtnChangePass = $("#profile-change-password"), + jqBtnGoBack = $("#profile-back"); codeq.profile = { }; @@ -71,7 +71,7 @@ along with this program. If not, see . */ items+=''; }); - $('#table1').html(items) + $('#profile-stats').html(items) }) .fail(function (reason) { -- cgit v1.2.1