This commit is contained in:
Zixaphir 2013-05-28 16:43:46 -07:00
parent 914fe88e75
commit 918d364fc1
4 changed files with 3 additions and 7 deletions

View File

@ -7114,9 +7114,8 @@
QR.notifications.push(new Notification('warning', el));
}
if (d.hidden) {
alert(el.textContent);
return alert(el.textContent);
}
return QR.notifications.push(new Notification('warning', el));
},
notifications: [],
cleanNotifications: function() {

View File

@ -7098,9 +7098,8 @@
QR.notifications.push(new Notification('warning', el));
}
if (d.hidden) {
alert(el.textContent);
return alert(el.textContent);
}
return QR.notifications.push(new Notification('warning', el));
},
notifications: [],
cleanNotifications: function() {

View File

@ -7101,9 +7101,8 @@
QR.notifications.push(new Notification('warning', el));
}
if (d.hidden) {
alert(el.textContent);
return alert(el.textContent);
}
return QR.notifications.push(new Notification('warning', el));
},
notifications: [],
cleanNotifications: function() {

View File

@ -141,7 +141,6 @@ QR =
else
QR.notifications.push new Notification 'warning', el
alert el.textContent if d.hidden
QR.notifications.push new Notification 'warning', el
notifications: []