chore(dom) openWindow

This commit is contained in:
coderaiser 2014-04-22 03:18:30 -04:00
parent 6432d28e82
commit 3db7dfbf09

View file

@ -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.');
};
/**