mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
chore(dom) openWindow
This commit is contained in:
parent
6432d28e82
commit
3db7dfbf09
1 changed files with 6 additions and 5 deletions
|
|
@ -1579,16 +1579,17 @@ var CloudCmd, Util, DOM, CloudFunc, Dialog;
|
|||
width = 1000,
|
||||
height = 650,
|
||||
|
||||
lOptions = 'left=' + left +
|
||||
options = 'left=' + left +
|
||||
',top=' + top +
|
||||
',width=' + width +
|
||||
',height=' + height +
|
||||
',personalbar=0,toolbar=0' +
|
||||
',scrollbars=1,resizable=1';
|
||||
',scrollbars=1,resizable=1',
|
||||
|
||||
var lWind = window.open(url, 'Cloud Commander Auth', lOptions);
|
||||
if (!lWind)
|
||||
Dialog.alert("Please disable your popup blocker and try again.");
|
||||
wnd = window.open(url, 'Cloud Commander Auth', options);
|
||||
|
||||
if (!wnd)
|
||||
Dialog.alert('Please disable your popup blocker and try again.');
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue