Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorPhie <phie@phie.ovh>2018-09-04 22:34:12 +0300
committerPhie <phie@phie.ovh>2018-09-04 22:34:12 +0300
commit8cfb1b0121287b616eb6bf48eaa2ec0787d55287 (patch)
tree449b1a8595905766900b3a74d3fe5e14ce1515ca /js
parent34ee3f380670affa124bdb138abd37287b36bf95 (diff)
display fullscreen as a nextcloud admin setting
Diffstat (limited to 'js')
-rw-r--r--js/settings-admin.js28
1 files changed, 28 insertions, 0 deletions
diff --git a/js/settings-admin.js b/js/settings-admin.js
new file mode 100644
index 0000000..19312cb
--- /dev/null
+++ b/js/settings-admin.js
@@ -0,0 +1,28 @@
+/**
+ * @copyright 2017, Georg Ehrke <oc.list@georgehrke.com>
+ *
+ * @author Georg Ehrke <oc.list@georgehrke.com>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+"use strict";
+
+$('#carnetDisplayFullscreen').change(function () {
+ var val = $(this)[0].checked;
+
+ OCP.AppConfig.setValue('carnet', 'carnetDisplayFullscreen', val ? 'yes' : 'no');
+}); \ No newline at end of file