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

8 lines
335 B
Plaintext
Raw Normal View History

2018-03-04 02:25:42 +00:00
$('#notification-{ @notification.id } .notification-read-unread > a')
2017-09-25 19:21:04 +00:00
.text('mark as unread')
2018-03-04 02:25:42 +00:00
.attr('href', '{ mark_unread_notification_path(@notification.id) }')
$('#notification-{ @notification.id }')
2017-09-25 19:21:04 +00:00
.removeClass('unread')
.addClass('read')
Metamaps.GlobalUI.Notifications.decrementUnread(Metamaps.GlobalUI.ReactApp.render)