metamaps--metamaps/app/views/notifications/mark_read.js.erb

7 lines
367 B
Plaintext
Raw Normal View History

2016-11-24 20:36:48 +00:00
$('#notification-<%= @notification.id %> .notification-read-unread > a')
.text('mark as unread')
2016-11-17 04:50:47 +00:00
.attr('href', '<%= mark_unread_notification_path(@notification.id) %>')
$('#notification-<%= @notification.id %>')
.removeClass('unread')
.addClass('read')
2016-12-04 20:02:24 +00:00
Metamaps.GlobalUI.NotificationIcon.render(Metamaps.GlobalUI.NotificationIcon.unreadNotificationsCount - 1)