From 0dd6f16e0b57da5239992ceacd90a9c9d01bc9e8 Mon Sep 17 00:00:00 2001 From: David Reagan Date: Tue, 16 Apr 2013 13:22:04 -0700 Subject: [PATCH] Removed extra id from jquery selectors. Remove console.log call. Removed commented code. --- settings/js/personal.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/settings/js/personal.js b/settings/js/personal.js index 9c960a180a1..7c879bcafe9 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -8,12 +8,10 @@ * Post the email address change to the server. */ function changeEmailAddress(){ - emailInfo = $('#lostpassword #email'); - console.log("Timout done."); + emailInfo = $('#email'); if (emailInfo.val() === emailInfo.defaultValue){ return; } - //event.preventDefault(); emailInfo.defaultValue = emailInfo.val(); OC.msg.startSaving('#lostpassword .msg'); var post = $( "#lostpassword" ).serialize(); @@ -80,7 +78,7 @@ $(document).ready(function(){ }); - $('#lostpassword #email').keyup(function(){ + $('#email').keyup(function(){ if(typeof timeout !== 'undefined'){ clearTimeout(timeout); } -- 2.39.5