Fix typo in popup detection

This commit is contained in:
bcoles
2012-10-27 18:53:04 +10:30
parent a3a8bf2f15
commit d7f0a590b7
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@
*/
beef.browser.popup = {
blocker_enbabled: function ()
blocker_enabled: function ()
{
screenParams = beef.browser.getScreenSize();
var popUp = window.open('/', 'windowName0', 'width=1, height=1, left='+screenParams.width+', top='+screenParams.height+', scrollbars, resizable');

View File

@@ -15,6 +15,6 @@
//
beef.execute(function() {
beef.net.send("<%= @command_url %>", <%= @command_id %>, "popup_blocker_enabled="+beef.browser.popup.blocker_enbabled());
beef.net.send("<%= @command_url %>", <%= @command_id %>, "popup_blocker_enabled="+beef.browser.popup.blocker_enabled());
});