| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-2015 Eyeo GmbH | 3 * Copyright (C) 2006-2015 Eyeo GmbH |
| 4 * | 4 * |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
| 7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
| 8 * | 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 16 */ | 16 */ |
| 17 | 17 |
| 18 //This case is true only for chrome when loading from notification.html | |
| 19 if (typeof ext === "undefined") | |
| 20 { | |
| 21 var ext = chrome.extension.getBackgroundPage().ext; | |
| 22 } | |
| 23 | |
| 24 var backgroundPage = ext.backgroundPage.getWindow(); | 18 var backgroundPage = ext.backgroundPage.getWindow(); |
| 25 var require = backgroundPage.require; | 19 var require = backgroundPage.require; |
| 26 | 20 |
| 27 var Utils = require("utils").Utils; | 21 var Utils = require("utils").Utils; |
| 28 var Notification = require("notification").Notification; | 22 var Notification = require("notification").Notification; |
| 29 | 23 |
| 30 function getDocLinks(notification) | 24 function getDocLinks(notification) |
| 31 { | 25 { |
| 32 if (!notification.links) | 26 if (!notification.links) |
| 33 return []; | 27 return []; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 var notificationElement = document.getElementById("notification"); | 110 var notificationElement = document.getElementById("notification"); |
| 117 notificationElement.className = notification.type; | 111 notificationElement.className = notification.type; |
| 118 notificationElement.style.display = "block"; | 112 notificationElement.style.display = "block"; |
| 119 | 113 |
| 120 document.getElementById("close-notification").addEventListener("click", functi
on() | 114 document.getElementById("close-notification").addEventListener("click", functi
on() |
| 121 { | 115 { |
| 122 notificationElement.style.display = "none"; | 116 notificationElement.style.display = "none"; |
| 123 notification.onClicked(); | 117 notification.onClicked(); |
| 124 }, false); | 118 }, false); |
| 125 }, false); | 119 }, false); |
| OLD | NEW |