remove redundant js

This commit is contained in:
Mario Vavti 2017-10-18 12:28:56 +02:00
parent fe1aa90304
commit ca4c725d57

View File

@ -458,7 +458,9 @@ function NavUpdate() {
} }
$.each(data, function(index, item) { $.each(data, function(index, item) {
if(index == 'notice' || index == 'info') //do not process those
var arr = ['notice', 'info', 'invalid'];
if(arr.indexOf(index) !== -1)
return; return;
if(item == 0) { if(item == 0) {
@ -942,26 +944,21 @@ function notify_popup_loader(notifyType) {
window.location.href=window.location.href; window.location.href=window.location.href;
} }
if(data.notify.length == 0){ $("#navbar-" + notifyType + "-menu").html(notifications_all + notifications_mark);
$("#navbar-" + notifyType + "-menu").html(aStr[nothingnew]); $("#nav-" + notifyType + "-menu").html(notifications_all + notifications_mark);
$("#nav-" + notifyType + "-menu").html(aStr[nothingnew]);
} else {
$("#navbar-" + notifyType + "-menu").html(notifications_all + notifications_mark);
$("#nav-" + notifyType + "-menu").html(notifications_all + notifications_mark);
$(data.notify).each(function() { $(data.notify).each(function() {
html = navbar_notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass); html = navbar_notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass);
$("#navbar-" + notifyType + "-menu").append(html); $("#navbar-" + notifyType + "-menu").append(html);
html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass);
$("#nav-" + notifyType + "-menu").append(html);
});
html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass); $(".dropdown-menu img[data-src], .notification img[data-src]").each(function(i, el){
$("#nav-" + notifyType + "-menu").append(html); // Replace data-src attribute with src attribute for every image
}); $(el).attr('src', $(el).data("src"));
$(".dropdown-menu img[data-src], .notification img[data-src]").each(function(i, el){ $(el).removeAttr("data-src");
// Replace data-src attribute with src attribute for every image });
$(el).attr('src', $(el).data("src"));
$(el).removeAttr("data-src");
});
}
}); });
setTimeout(function() { setTimeout(function() {