summaryrefslogtreecommitdiffstats
path: root/js/app/directives
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-22 16:05:45 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-22 16:05:45 +0200
commitb9099435cb6535db835d25361e7b706b85744b20 (patch)
tree2a681b1f9ff0de9780f1f4a785be8378d7f577ab /js/app/directives
parentac5c8f5f4faae74c034a5cfd1e7f85ca26815bc5 (diff)
add undo for feed and folder deletion, fix #56
Diffstat (limited to 'js/app/directives')
-rw-r--r--js/app/directives/undonotification.coffee52
1 files changed, 52 insertions, 0 deletions
diff --git a/js/app/directives/undonotification.coffee b/js/app/directives/undonotification.coffee
new file mode 100644
index 000000000..5e30af169
--- /dev/null
+++ b/js/app/directives/undonotification.coffee
@@ -0,0 +1,52 @@
+###
+
+ownCloud - News
+
+@author Bernhard Posselt
+@copyright 2012 Bernhard Posselt nukeawhale@gmail.com
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+License as published by the Free Software Foundation; either
+version 3 of the License, or any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+
+You should have received a copy of the GNU Affero General Public
+License along with this library. If not, see <http://www.gnu.org/licenses/>.
+
+###
+
+angular.module('News').directive 'undoNotification', ['$rootScope',
+($rootScope) ->
+
+ return (scope, elm, attr) ->
+
+ elm.click ->
+ $(@).fadeOut()
+
+ scope.$on 'notUndone', ->
+ $(elm).fadeOut()
+
+ undo = ->
+ caption = ''
+
+ link = $(elm).find('a')
+ link.click ->
+ undo()
+ $rootScope.$apply()
+ elm.fadeOut()
+
+ scope.getCaption = ->
+ return caption
+
+ scope.$on 'undoMessage', (scope, data) ->
+ undo = data.undoCallback
+ caption = data.caption
+ elm.fadeIn().css("display","inline")
+
+
+] \ No newline at end of file