summaryrefslogtreecommitdiffstats
path: root/js/directive/AppNavigationEntryUtils.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/directive/AppNavigationEntryUtils.js')
-rw-r--r--js/directive/AppNavigationEntryUtils.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/js/directive/AppNavigationEntryUtils.js b/js/directive/AppNavigationEntryUtils.js
new file mode 100644
index 000000000..8deb09b61
--- /dev/null
+++ b/js/directive/AppNavigationEntryUtils.js
@@ -0,0 +1,38 @@
+/**
+ * ownCloud - News
+ *
+ * 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
+ */
+app.run(($document, $rootScope) => {
+ 'use strict';
+ $document.click((event) => {
+ $rootScope.$broadcast('documentClicked', event);
+ });
+});
+
+app.directive('appNavigationEntryUtils', () => {
+ 'use strict';
+ return {
+ restrict: 'C',
+ link: (scope, elm) => {
+ let menu = elm.siblings('.app-navigation-entry-menu');
+ menu.hide();
+ let button = $(elm)
+ .find('.app-navigation-entry-utils-menu-button button');
+
+ button.click(() => {
+ menu.toggle();
+ });
+
+ scope.$on('documentClicked', (scope, event) => {
+ if (event.target !== button[0]) {
+ menu.hide();
+ }
+ });
+ }
+ };
+}); \ No newline at end of file