diff options
Diffstat (limited to 'apps/files_sharing/js/authenticate.js')
-rw-r--r-- | apps/files_sharing/js/authenticate.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/apps/files_sharing/js/authenticate.js b/apps/files_sharing/js/authenticate.js deleted file mode 100644 index 7f3f0d0a7d4..00000000000 --- a/apps/files_sharing/js/authenticate.js +++ /dev/null @@ -1,9 +0,0 @@ -$(document).ready(function(){ - $('#password').on('keyup input change', function() { - if ($('#password').val().length > 0) { - $('#password-submit').prop('disabled', false); - } else { - $('#password-submit').prop('disabled', true); - } - }); -}); |