mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-02 20:42:49 +00:00
Add alert when popup is blocked.
This commit is contained in:
parent
b4caf1b187
commit
c58d3b56d0
@ -23,6 +23,7 @@
|
||||
var gSiteBox;
|
||||
var gUnblockButton;
|
||||
var gPageReport;
|
||||
var gUPMsg;
|
||||
|
||||
var popupmanager =
|
||||
Components.classes["@mozilla.org/PopupWindowManager;1"]
|
||||
@ -33,6 +34,7 @@ function onLoad()
|
||||
gSiteBox = document.getElementById("siteBox");
|
||||
gUnblockButton = document.getElementById("unblockButton");
|
||||
gPageReport = opener.gBrowser.pageReport;
|
||||
gUPMsg = document.getElementById("unblockedPopupMsg");
|
||||
|
||||
buildSiteBox();
|
||||
}
|
||||
@ -74,5 +76,7 @@ function whitelistSite()
|
||||
uri.spec = selectedItem.label;
|
||||
popupmanager.add(uri, false);
|
||||
gSiteBox.removeChild(selectedItem);
|
||||
|
||||
alert(selectedItem.label + gUPMsg.value);
|
||||
}
|
||||
|
||||
|
@ -44,6 +44,8 @@
|
||||
|
||||
<script type="application/x-javascript" src="chrome://browser/content/pageReport.js"/>
|
||||
|
||||
<description value="&unblockedPopupMsg.label;" id="unblockedPopupMsg"/>
|
||||
|
||||
<vbox flex="1">
|
||||
<description>
|
||||
&intro.label;
|
||||
|
@ -5,3 +5,5 @@ unrequested pop-up windows:">
|
||||
|
||||
<!ENTITY done.label "Done">
|
||||
<!ENTITY unblock.label "Unblock Site">
|
||||
|
||||
<!ENTITY unblockedPopupMsg.label " will now be able to open unrequested pop-up windows.">
|
Loading…
x
Reference in New Issue
Block a user