diff options
author | Anders Nor Berle <anders@berle.cc> | 2012-08-16 20:42:51 +0000 |
---|---|---|
committer | Anders Nor Berle <anders@berle.cc> | 2012-08-16 20:55:10 +0000 |
commit | b6a3bf154d5b16a84636a60c9db2979118427170 (patch) | |
tree | b2f6dbf69013f17465ae6ca2888a4e599c66570a | |
parent | 1e6dc6751700a91faff463f8f2840cf24e742f37 (diff) | |
download | nextcloud-server-b6a3bf154d5b16a84636a60c9db2979118427170.tar.gz nextcloud-server-b6a3bf154d5b16a84636a60c9db2979118427170.zip |
Comment out javascript that hides login button
It has been reported problems with the javascript that hides the
login button so jancborchardt okayed that I made this change.
-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) { |