Removed extra id from jquery selectors. Remove console.log call. Removed commented code.

remotes/origin/stable6
David Reagan 12 years ago
parent 6d812ada05
commit 0dd6f16e0b
  1. 6
      settings/js/personal.js

@ -8,12 +8,10 @@
* Post the email address change to the server. * Post the email address change to the server.
*/ */
function changeEmailAddress(){ function changeEmailAddress(){
emailInfo = $('#lostpassword #email'); emailInfo = $('#email');
console.log("Timout done.");
if (emailInfo.val() === emailInfo.defaultValue){ if (emailInfo.val() === emailInfo.defaultValue){
return; return;
} }
//event.preventDefault();
emailInfo.defaultValue = emailInfo.val(); emailInfo.defaultValue = emailInfo.val();
OC.msg.startSaving('#lostpassword .msg'); OC.msg.startSaving('#lostpassword .msg');
var post = $( "#lostpassword" ).serialize(); var post = $( "#lostpassword" ).serialize();
@ -80,7 +78,7 @@ $(document).ready(function(){
}); });
$('#lostpassword #email').keyup(function(){ $('#email').keyup(function(){
if(typeof timeout !== 'undefined'){ if(typeof timeout !== 'undefined'){
clearTimeout(timeout); clearTimeout(timeout);
} }

Loading…
Cancel
Save