diff options
author | Michael Gapczynski <GapczynskiM@gmail.com> | 2012-04-25 14:35:30 -0400 |
---|---|---|
committer | Michael Gapczynski <GapczynskiM@gmail.com> | 2012-04-25 14:37:14 -0400 |
commit | 6895c54a3fe4cbc690ce0e17154bfe2e40295bb0 (patch) | |
tree | a26ec88b4780594d18d0c866c559c17febde812b /apps | |
parent | cbba469990a96d78d78d1426cfffbb7e36b5d6ac (diff) | |
download | nextcloud-server-6895c54a3fe4cbc690ce0e17154bfe2e40295bb0.tar.gz nextcloud-server-6895c54a3fe4cbc690ce0e17154bfe2e40295bb0.zip |
Fix javascript checkbox toggle for resharing
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/js/settings.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/js/settings.js b/apps/files_sharing/js/settings.js index f1b1643e7d6..bb7d79fecbb 100644 --- a/apps/files_sharing/js/settings.js +++ b/apps/files_sharing/js/settings.js @@ -1,7 +1,7 @@ $(document).ready(function() { $('#allowResharing').bind('change', function() { var checked = 1; - if (!$('#allowResharing').attr('checked')) { + if (!this.checked) { checked = 0; } $.post(OC.filePath('files_sharing','ajax','toggleresharing.php'), 'resharing='+checked); |