summaryrefslogtreecommitdiffstats
path: root/core/js/apps.js
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-26 17:31:41 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-26 17:31:41 +0200
commitc2330e558ebc8396f60be12db95a7ebb9f4e9385 (patch)
treecc556af53cb19b1735157b2e5a77759372ee159a /core/js/apps.js
parent9112386cbf0eb1baf28aedd6fce07cef75fa1d68 (diff)
downloadnextcloud-server-c2330e558ebc8396f60be12db95a7ebb9f4e9385.tar.gz
nextcloud-server-c2330e558ebc8396f60be12db95a7ebb9f4e9385.zip
rename to apps.js
Diffstat (limited to 'core/js/apps.js')
-rw-r--r--core/js/apps.js64
1 files changed, 64 insertions, 0 deletions
diff --git a/core/js/apps.js b/core/js/apps.js
new file mode 100644
index 00000000000..0308d1fef07
--- /dev/null
+++ b/core/js/apps.js
@@ -0,0 +1,64 @@
+/**
+ * ownCloud - core
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Bernhard Posselt 2014
+ */
+
+(function (document, $) {
+
+ 'use strict';
+
+ /**
+ * Provides a way to slide down a target area through a button and slide it
+ * up if the user clicks somewhere else. Used for the news app settings and
+ * add new field.
+ *
+ * Usage:
+ * <button data-apps-slide-toggle=".slide-area">slide</button>
+ * <div class=".slide-area" class="hidden">I'm sliding up</div>
+ */
+ var registerAppsSlideToggle = function () {
+ $(document).click(function (event) {
+
+ var buttons = $('[data-apps-slide-toggle]');
+
+ buttons.each(function (index, button) {
+
+ var areaSelector = $(button).data('apps-slide-toggle');
+ var area = $(areaSelector);
+
+ // do nothing if the area is animated
+ if (!area.is(':animated')) {
+
+ // button toggles the area
+ if (button === event.target) {
+ if (area.is(':visible')) {
+ area.slideUp();
+ } else {
+ area.slideDown();
+ }
+
+ // all other areas that have not been clicked but are open
+ // should be slid up
+ } else {
+ var closest = $(event.target).closest(areaSelector);
+ if (area.is(':visible') && closest[0] !== area[0]) {
+ area.slideUp();
+ }
+ }
+ }
+ });
+
+ });
+ };
+
+
+ $(document).ready(function () {
+ registerAppsSlideToggle();
+ });
+
+}(document, jQuery)); \ No newline at end of file