| LEFT | RIGHT |
| 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 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 if (currentElement && msg.remove) | 708 if (currentElement && msg.remove) |
| 709 { | 709 { |
| 710 // Hide the selected element itself if an added blocking | 710 // Hide the selected element itself if an added blocking |
| 711 // filter is causing it to collapse. Note that this | 711 // filter is causing it to collapse. Note that this |
| 712 // behavior is incomplete, but the best we can do here, | 712 // behavior is incomplete, but the best we can do here, |
| 713 // e.g. if an added blocking filter matches other elements, | 713 // e.g. if an added blocking filter matches other elements, |
| 714 // the effect won't be visible until the page is is reloaded. | 714 // the effect won't be visible until the page is is reloaded. |
| 715 checkCollapse(currentElement.prisoner || currentElement); | 715 checkCollapse(currentElement.prisoner || currentElement); |
| 716 | 716 |
| 717 // Apply added element hiding filters. | 717 // Apply added element hiding filters. |
| 718 var selectors = msg.selectors; | 718 updateStylesheet(); |
| 719 if (selectors.length > 0) | |
| 720 hideElements(selectors); | |
| 721 } | 719 } |
| 722 clickHide_deactivate(); | 720 clickHide_deactivate(); |
| 723 break; | 721 break; |
| 724 case "clickhide-show-dialog": | 722 case "clickhide-show-dialog": |
| 725 if (window.self == window.top) | 723 if (window.self == window.top) |
| 726 clickHide_showDialog(msg.screenX + window.pageXOffset, | 724 clickHide_showDialog(msg.screenX + window.pageXOffset, |
| 727 msg.screenY + window.pageYOffset, | 725 msg.screenY + window.pageYOffset, |
| 728 msg.clickHideFilters); | 726 msg.clickHideFilters); |
| 729 break; | 727 break; |
| 730 case "clickhide-clear-last-right-click-event": | 728 case "clickhide-clear-last-right-click-event": |
| 731 if (lastRightClickEventValid) | 729 if (lastRightClickEventValid) |
| 732 lastRightClickEventValid = false; | 730 lastRightClickEventValid = false; |
| 733 else | 731 else |
| 734 lastRightClickEvent = null; | 732 lastRightClickEvent = null; |
| 735 break; | 733 break; |
| 736 } | 734 } |
| 737 }); | 735 }); |
| 738 | 736 |
| 739 if (window == window.top) | 737 if (window == window.top) |
| 740 ext.backgroundPage.sendMessage({type: "report-html-page"}); | 738 ext.backgroundPage.sendMessage({type: "report-html-page"}); |
| 741 } | 739 } |
| LEFT | RIGHT |