summaryrefslogtreecommitdiffstats
path: root/js-old/directive/NewsArticleActions.js
diff options
context:
space:
mode:
Diffstat (limited to 'js-old/directive/NewsArticleActions.js')
-rw-r--r--js-old/directive/NewsArticleActions.js28
1 files changed, 28 insertions, 0 deletions
diff --git a/js-old/directive/NewsArticleActions.js b/js-old/directive/NewsArticleActions.js
new file mode 100644
index 000000000..31c418570
--- /dev/null
+++ b/js-old/directive/NewsArticleActions.js
@@ -0,0 +1,28 @@
+/**
+ * Nextcloud - 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.directive('newsArticleActions', function () {
+ 'use strict';
+ return {
+ restrict: 'A',
+ scope: {
+ newsArticleActions: '=',
+ noPlugins: '='
+ },
+ link: function (scope, elem) {
+ var plugins = News.getArticleActionPlugins();
+
+ for (var i=0; i<plugins.length; i+=1) {
+ plugins[i](elem, scope.newsArticleActions);
+ }
+
+ scope.noPlugins = plugins.length === 0;
+ }
+ };
+});