| Left: | ||
| Right: | 
| 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 | 
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 103 Notification.markAsShown(notification.id); | 103 Notification.markAsShown(notification.id); | 
| 104 notification.onClicked(); | 104 notification.onClicked(); | 
| 105 break; | 105 break; | 
| 106 } | 106 } | 
| 107 window.close(); | 107 window.close(); | 
| 108 }, true); | 108 }, true); | 
| 109 } | 109 } | 
| 110 | 110 | 
| 111 var notificationElement = document.getElementById("notification"); | 111 var notificationElement = document.getElementById("notification"); | 
| 112 notificationElement.className = notification.type; | 112 notificationElement.className = notification.type; | 
| 113 notificationElement.style.display = "block"; | 113 notificationElement.hidden = false; | 
| 114 | 114 notificationElement.addEventListener("click", function(event) | 
| 115 document.getElementById("close-notification").addEventListener("click", functi on() | |
| 116 { | 115 { | 
| 117 notificationElement.style.display = "none"; | 116 switch (event.target.id) | 
| 118 notification.onClicked(); | 117 { | 
| 119 }, false); | 118 case "notification-close": | 
| 119 notificationElement.classList.add("closing"); | |
| 120 break; | |
| 121 case "notification-optout": | |
| 122 Notification.toggleIgnoreCategory("*", true); | |
| 123 case "notification-hide": | |
| 124 notificationElement.hidden = true; | |
| 125 notification.onClicked(); | |
| 126 break; | |
| 
 
Sebastian Noack
2015/06/25 13:55:04
Nit: This break is redundant. But I leave it up to
 
Thomas Greiner
2015/06/25 16:48:44
That's mainly a personal preference of mine to ens
 
 | |
| 127 } | |
| 128 }, true); | |
| 120 }, false); | 129 }, false); | 
| OLD | NEW |