summaryrefslogtreecommitdiffstats
path: root/js-old/directive/NewsDroppable.js
diff options
context:
space:
mode:
Diffstat (limited to 'js-old/directive/NewsDroppable.js')
-rw-r--r--js-old/directive/NewsDroppable.js34
1 files changed, 34 insertions, 0 deletions
diff --git a/js-old/directive/NewsDroppable.js b/js-old/directive/NewsDroppable.js
new file mode 100644
index 000000000..e06b2aac1
--- /dev/null
+++ b/js-old/directive/NewsDroppable.js
@@ -0,0 +1,34 @@
+/**
+ * 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('newsDroppable', function ($rootScope) {
+ 'use strict';
+
+ return function (scope, elem, attr) {
+ var details = {
+ accept: '.feed',
+ hoverClass: 'drag-and-drop',
+ greedy: true,
+ drop: function (event, ui) {
+
+ $('.drag-and-drop').removeClass('drag-and-drop');
+
+ var data = {
+ folderId: parseInt(elem.data('id'), 10),
+ feedId: parseInt($(ui.draggable).data('id'), 10)
+ };
+
+ $rootScope.$broadcast('moveFeedToFolder', data);
+ scope.$apply(attr.droppable);
+ }
+ };
+
+ elem.droppable(details);
+ };
+}); \ No newline at end of file