summaryrefslogtreecommitdiffstats
path: root/settings/js/admin.js
diff options
context:
space:
mode:
authorVolkan Gezer <volkangezer@gmail.com>2014-05-29 21:09:56 +0200
committerVolkan Gezer <volkangezer@gmail.com>2014-05-29 21:14:20 +0200
commitc01f196f723dcb3dea6947c821a70d4d80563bbd (patch)
tree49da7f93adadc73659d7e4dc1e6a08f06180675b /settings/js/admin.js
parent32a50563d3a93c304d7879212f349e6930d5b5d6 (diff)
downloadnextcloud-server-c01f196f723dcb3dea6947c821a70d4d80563bbd.tar.gz
nextcloud-server-c01f196f723dcb3dea6947c821a70d4d80563bbd.zip
make reshare settings foldable
Diffstat (limited to 'settings/js/admin.js')
-rw-r--r--settings/js/admin.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/settings/js/admin.js b/settings/js/admin.js
index 249131464a8..9353333b47e 100644
--- a/settings/js/admin.js
+++ b/settings/js/admin.js
@@ -83,6 +83,9 @@ $(document).ready(function(){
$('#allowLinks').change(function() {
$("#publicLinkSettings").toggleClass('hidden', !this.checked);
});
+ $('#allowResharing').change(function() {
+ $("#resharingSettings").toggleClass('hidden', !this.checked);
+ });
$('#security').change(function(){
$.post(OC.filePath('settings','ajax','setsecurity.php'), { enforceHTTPS: $('#forcessl').val() },function(){} );