diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-04-01 09:04:37 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-04-01 09:04:37 +0200 |
commit | c5d8d913459e47ba68dfad2cba0db946d2bfd7c0 (patch) | |
tree | 25219f9de40ce427b66a018c262b752af3433e0d /settings | |
parent | f5c7ba6b817c2cd2094fc9a89c966b8ae93bc903 (diff) | |
parent | 68b4ce568ea306793603de752a3cf1a313c87e92 (diff) | |
download | nextcloud-server-c5d8d913459e47ba68dfad2cba0db946d2bfd7c0.tar.gz nextcloud-server-c5d8d913459e47ba68dfad2cba0db946d2bfd7c0.zip |
Merge pull request #15331 from owncloud/fix-password
Fix JS reference error for personal password changing
Diffstat (limited to 'settings')
-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 302906702bd..b269ebae3bc 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -172,7 +172,7 @@ $(document).ready(function () { $('#pass2').showPassword().keyup(); } $("#passwordbutton").click(function () { - var isIE8or9 = html.hasClass('lte9'); + var isIE8or9 = $('html').hasClass('lte9'); // FIXME - TODO - once support for IE8 and IE9 is dropped // for IE8 and IE9 this will check additionally if the typed in password // is different from the placeholder, because in IE8/9 the placeholder |