diff options
author | kondou <kondou@ts.unde.re> | 2013-07-31 21:21:02 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-07-31 21:21:02 +0200 |
commit | aaf0fec9f54bc6f9eef5df00441d593e053ee74b (patch) | |
tree | ca65f4c20b8d1e698d815a3b5970926023093478 /settings/js/personal.js | |
parent | 50101a85a63f29c47abe325aecb3af26bc8a96d1 (diff) | |
download | nextcloud-server-aaf0fec9f54bc6f9eef5df00441d593e053ee74b.tar.gz nextcloud-server-aaf0fec9f54bc6f9eef5df00441d593e053ee74b.zip |
Fix some JSLint warnings
Diffstat (limited to 'settings/js/personal.js')
-rw-r--r-- | settings/js/personal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/js/personal.js b/settings/js/personal.js index 099c1426dc0..fc638c97455 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -8,7 +8,7 @@ * Post the email address change to the server. */ function changeEmailAddress(){ - emailInfo = $('#email'); + var emailInfo = $('#email'); if (emailInfo.val() === emailInfo.defaultValue){ return; } |