0fcae1f9c0
Fixes #14
35 lines
No EOL
881 B
JavaScript
35 lines
No EOL
881 B
JavaScript
var mainWindow = null;
|
|
|
|
chrome.app.runtime.onLaunched.addListener(function(launchData) {
|
|
|
|
if (mainWindow) {
|
|
mainWindow.contentWindow.launchData = launchData;
|
|
mainWindow.contentWindow.require(["command"], function(c) {
|
|
c.fire("session:open-launch");
|
|
});
|
|
mainWindow.focus();
|
|
mainWindow.drawAttention();
|
|
return;
|
|
}
|
|
|
|
//launchData.items will contain files from file manager
|
|
chrome.storage.local.get("bounds", function(data) {
|
|
var bounds = data.bounds || {
|
|
width: 800,
|
|
height: 600,
|
|
left: 50,
|
|
top: 50
|
|
};
|
|
chrome.app.window.create("main.html", {
|
|
bounds: bounds
|
|
}, function(win) {
|
|
mainWindow = win;
|
|
win.contentWindow.launchData = launchData;
|
|
mainWindow.onClosed.addListener(function() {
|
|
mainWindow = null;
|
|
});
|
|
});
|
|
|
|
});
|
|
|
|
}); |