metamaps--metamaps/views/js/mark_read.js
2018-03-05 13:21:35 -05:00

8 lines
335 B
JavaScript

$('#notification-{ @notification.id } .notification-read-unread > a')
.text('mark as unread')
.attr('href', '{ mark_unread_notification_path(@notification.id) }')
$('#notification-{ @notification.id }')
.removeClass('unread')
.addClass('read')
Metamaps.GlobalUI.Notifications.decrementUnread(Metamaps.GlobalUI.ReactApp.render)