overleaf/services/web/public/coffee/main/project-list/notifications-controller.coffee
2016-01-22 18:08:39 -02:00

17 lines
390 B
CoffeeScript

define [
"base"
], (App) ->
App.controller "NotificationsController", ($scope, $http) ->
for notification in $scope.notifications
notification.hide = false
$scope.dismiss = (notification) ->
$http({
url: "/notifications/#{notification._id}"
method: "DELETE"
headers:
"X-Csrf-Token": window.csrfToken
})
.success (data) ->
notification.hide = true