reset timer on manual update trigger

This commit is contained in:
Mario Vavti 2018-01-25 12:56:52 +01:00
parent f7309b926b
commit 019dcefeca

View File

@ -70,6 +70,8 @@ $(document).ready(function() {
if(! $('#nav-' + notifyType + '-sub').hasClass('show')) {
loadNotificationItems(notifyType);
if(timer) clearTimeout(timer);
timer = setTimeout(updateInit,updateInterval);
}
$(this).data('clicked', true);
@ -389,10 +391,9 @@ function notificationsUpdate(cached_data) {
}
var notifyType = null;
if($('.notification-content.show').length)
if($('.notification-content.show').length) {
notifyType = $('.notification-content.show').data('type');
}
if(notifyType !== null) {
loadNotificationItems(notifyType);
}
@ -437,7 +438,6 @@ function handleNotifications(data) {
}
function handleNotificationsItems(notifyType, data) {
var notifications_tpl= unescape($("#nav-notifications-template[rel=template]").html());
var notify_menu = $("#nav-" + notifyType + "-menu");
@ -931,11 +931,9 @@ function justifyPhotosAjax(id) {
}
function loadNotificationItems(notifyType) {
var pingExCmd = 'ping/' + notifyType + ((localUser != 0) ? '?f=&uid=' + localUser : '');
var clicked = $('[data-type=\'' + notifyType + '\']').data('clicked');
if((clicked === undefined) && (sessionStorage.getItem(notifyType + '_notifications_cache') !== null)) {
var cached_data = JSON.parse(sessionStorage.getItem(notifyType + '_notifications_cache'));
handleNotificationsItems(notifyType, cached_data);