aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/js/settings-admin.js
diff options
context:
space:
mode:
authorBjörn Schießle <schiessle@owncloud.com>2016-04-18 18:17:08 +0200
committerBjörn Schießle <schiessle@owncloud.com>2016-04-22 14:55:40 +0200
commite10105474fbef8940fdfa96d5e2bf2f09b1f0649 (patch)
tree1881e059a3408a2d4e8096e31719ba989f7dfab1 /apps/files_sharing/js/settings-admin.js
parent606b756a94643eaae87e18b39f6c75e6d18fec7e (diff)
downloadnextcloud-server-e10105474fbef8940fdfa96d5e2bf2f09b1f0649.tar.gz
nextcloud-server-e10105474fbef8940fdfa96d5e2bf2f09b1f0649.zip
move federated sharing settings to the federatedfilesharing app
Diffstat (limited to 'apps/files_sharing/js/settings-admin.js')
-rw-r--r--apps/files_sharing/js/settings-admin.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/apps/files_sharing/js/settings-admin.js b/apps/files_sharing/js/settings-admin.js
deleted file mode 100644
index 95578bff548..00000000000
--- a/apps/files_sharing/js/settings-admin.js
+++ /dev/null
@@ -1,12 +0,0 @@
-$(document).ready(function() {
-
- $('#fileSharingSettings input').change(function() {
- var value = 'no';
- if (this.checked) {
- value = 'yes';
- }
- OC.AppConfig.setValue('files_sharing', $(this).attr('name'), value);
- });
-
- $('.section .icon-info').tipsy({gravity: 'w'});
-});