diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-08-18 00:40:29 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-08-18 00:40:29 +0200 |
commit | c3cd49926a243c61db5925885b0fc4beef868dc2 (patch) | |
tree | 3310fde2b9020bd22b4d0a75226ece41b7daf609 | |
parent | 41639f05174ecbf1042ae1ab53ab6374861badce (diff) | |
parent | b6a3bf154d5b16a84636a60c9db2979118427170 (diff) | |
download | nextcloud-server-c3cd49926a243c61db5925885b0fc4beef868dc2.tar.gz nextcloud-server-c3cd49926a243c61db5925885b0fc4beef868dc2.zip |
Merge commit 'refs/merge-requests/139' of git://gitorious.org/owncloud/owncloud into merge-requests/139
-rw-r--r-- | core/js/js.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/js/js.js b/core/js/js.js index 92a2660fd9c..499e6b7525c 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -475,8 +475,9 @@ $(document).ready(function(){ } } // hide log in button etc. when form fields not filled - checkShowCredentials(); - $('input#user, input#password').keyup(checkShowCredentials); + // commented out due to some browsers having issues with it + // checkShowCredentials(); + // $('input#user, input#password').keyup(checkShowCredentials); $('#settings #expand').keydown(function(event) { if (event.which == 13 || event.which == 32) { |