scinote-web/app/assets/javascripts/notifications.js
2016-10-05 15:51:11 +02:00

20 lines
616 B
JavaScript

$(document.body).ready(function () {
$('.btn-more-notifications')
.on("ajax:success", function (e, data) {
var list = $('.notifications-list');
var moreBtn = $('.btn-more-notifications');
if (data.html) {
// Remove button if all notifications are shown
if (data.results_number < data.per_page) {
moreBtn.remove();
// Otherwise update reference
} else {
moreBtn.attr('href', data.more_notifications_url);
}
$(list).append(data.html);
} else if (data.results_number < 1) {
moreBtn.remove();
}
});
});