remove debug logs
This commit is contained in:
parent
4549773389
commit
d8f69737ab
|
@ -192,9 +192,7 @@
|
||||||
nnm.append(html);
|
nnm.append(html);
|
||||||
|
|
||||||
var notification_id = e.attr('href').match(/\d+$/)[0];
|
var notification_id = e.attr('href').match(/\d+$/)[0];
|
||||||
console.log(notification_lastitem, notification_id);
|
|
||||||
if (notification_lastitem!== null && notification_id!=notification_lastitem) {
|
if (notification_lastitem!== null && notification_id!=notification_lastitem) {
|
||||||
console.log( "eh!",getNotificationPermission() );
|
|
||||||
if (notification_first_id===0) notification_first_id = notification_id;
|
if (notification_first_id===0) notification_first_id = notification_id;
|
||||||
if (getNotificationPermission()==="granted") {
|
if (getNotificationPermission()==="granted") {
|
||||||
var notification = new Notification(document.title, {
|
var notification = new Notification(document.title, {
|
||||||
|
@ -218,7 +216,6 @@
|
||||||
|
|
||||||
});
|
});
|
||||||
if (notification_first_id!==0) notification_lastitem = notification_first_id;
|
if (notification_first_id!==0) notification_lastitem = notification_first_id;
|
||||||
console.log("end:", notification_lastitem, notification_first_id);
|
|
||||||
localStorage.setItem("notification-lastitem", notification_lastitem)
|
localStorage.setItem("notification-lastitem", notification_lastitem)
|
||||||
|
|
||||||
$("img[data-src]", nnm).each(function(i, el){
|
$("img[data-src]", nnm).each(function(i, el){
|
||||||
|
@ -787,7 +784,7 @@ function previewTheme(elm) {
|
||||||
// notification permission settings in localstorage
|
// notification permission settings in localstorage
|
||||||
// set by settings page
|
// set by settings page
|
||||||
function getNotificationPermission() {
|
function getNotificationPermission() {
|
||||||
if (window.Notification === undefined) {
|
if (window["Notification"] === undefined) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
if (Notification.permission === 'granted') {
|
if (Notification.permission === 'granted') {
|
||||||
|
|
Loading…
Reference in a new issue