From ca4c725d57b0da9e6ea925023fb7487d4df48b2a Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 18 Oct 2017 12:28:56 +0200 Subject: remove redundant js --- view/js/main.js | 35 ++++++++++++++++------------------- 1 file changed, 16 insertions(+), 19 deletions(-) (limited to 'view/js/main.js') diff --git a/view/js/main.js b/view/js/main.js index 512b6e45b..b4c2bcf5d 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -458,7 +458,9 @@ function NavUpdate() { } $.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; if(item == 0) { @@ -942,26 +944,21 @@ function notify_popup_loader(notifyType) { window.location.href=window.location.href; } - if(data.notify.length == 0){ - $("#navbar-" + notifyType + "-menu").html(aStr[nothingnew]); - $("#nav-" + notifyType + "-menu").html(aStr[nothingnew]); - } else { - $("#navbar-" + notifyType + "-menu").html(notifications_all + notifications_mark); - $("#nav-" + notifyType + "-menu").html(notifications_all + notifications_mark); + $("#navbar-" + notifyType + "-menu").html(notifications_all + notifications_mark); + $("#nav-" + notifyType + "-menu").html(notifications_all + notifications_mark); - $(data.notify).each(function() { - html = navbar_notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass); - $("#navbar-" + notifyType + "-menu").append(html); + $(data.notify).each(function() { + html = navbar_notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass); + $("#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); - $("#nav-" + notifyType + "-menu").append(html); - }); - $(".dropdown-menu img[data-src], .notification img[data-src]").each(function(i, el){ - // Replace data-src attribute with src attribute for every image - $(el).attr('src', $(el).data("src")); - $(el).removeAttr("data-src"); - }); - } + $(".dropdown-menu img[data-src], .notification img[data-src]").each(function(i, el){ + // Replace data-src attribute with src attribute for every image + $(el).attr('src', $(el).data("src")); + $(el).removeAttr("data-src"); + }); }); setTimeout(function() { -- cgit v1.2.3