summaryrefslogtreecommitdiffstats
path: root/js/gui
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-23 18:46:53 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-23 18:46:53 +0200
commit94e24c1e1a53db60e6924b39ad308b6b2d2e8c2b (patch)
tree6ffa11105ffb59401447301fee2f6addf50b62d6 /js/gui
parent6208debf043fc8af28de13515dec4d10ace99bc3 (diff)
remove slideup since its in core
Diffstat (limited to 'js/gui')
-rw-r--r--js/gui/app.js36
1 files changed, 0 insertions, 36 deletions
diff --git a/js/gui/app.js b/js/gui/app.js
deleted file mode 100644
index 171911cec..000000000
--- a/js/gui/app.js
+++ /dev/null
@@ -1,36 +0,0 @@
-/**
- * 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 (window, document, $) {
-
- 'use strict';
-
- $(document).ready(function () {
-
- var buttons = $('[data-app-slide-toggle-area]:not([data-app-slide-toggle-area=""])');
-
- $(document).click(function (event) {
-
- buttons.each(function (index, button) {
- console.log(button);
-
- var area = $(button).data('app-slide-toggle-area');
-
- // if the
- if (button === event.target) {
- console.log(area);
- event.stopPropagation();
- }
- });
-
- });
- });
-
-}(window, document, jQuery)); \ No newline at end of file