From d8f69737ab01ad49eeaac253f88fa9c7990bf81a Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Wed, 24 Jun 2015 11:04:38 +0200 Subject: [PATCH] remove debug logs --- js/main.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/js/main.js b/js/main.js index 8de49def03..455df9bb09 100644 --- a/js/main.js +++ b/js/main.js @@ -192,9 +192,7 @@ nnm.append(html); var notification_id = e.attr('href').match(/\d+$/)[0]; - console.log(notification_lastitem, notification_id); if (notification_lastitem!== null && notification_id!=notification_lastitem) { - console.log( "eh!",getNotificationPermission() ); if (notification_first_id===0) notification_first_id = notification_id; if (getNotificationPermission()==="granted") { var notification = new Notification(document.title, { @@ -218,7 +216,6 @@ }); if (notification_first_id!==0) notification_lastitem = notification_first_id; - console.log("end:", notification_lastitem, notification_first_id); localStorage.setItem("notification-lastitem", notification_lastitem) $("img[data-src]", nnm).each(function(i, el){ @@ -787,7 +784,7 @@ function previewTheme(elm) { // notification permission settings in localstorage // set by settings page function getNotificationPermission() { - if (window.Notification === undefined) { + if (window["Notification"] === undefined) { return null; } if (Notification.permission === 'granted') {