Это мой код ..Как выровнять два окна бок о бок в nw.js?
var height=window.screen.availHeight;
var width=window.screen.availWidth;
var scenarioId = selectedScenarioIds[0];
var url ='url'+scenarioId;
width=(width/2);
if (typeof process == "object") {
nw.Window.open(url, {
position: 'center',
width: width,
height: height,
focus: true
});
}
scenarioId = selectedScenarioIds[1];
var url ='url'+scenarioId;
if (typeof process == "object") {
nw.Window.open(url, {
position: 'center',
width: width,
height: height,
focus: true
});
}
, что я пытаюсь сделать, это открыть два окна для сравнения. Вышеприведенный код работает, но два окна открываются один за другим, но я хочу, чтобы он открывался один рядом с другим. Любой способ добиться этого - nw.js? Заранее спасибо ....