Make the default window size a little bigger

This commit is contained in:
Cameron Gutman 2016-05-06 13:36:10 -04:00
parent 97052591ba
commit 7030576f80

View File

@ -1,9 +1,8 @@
// just start the app in fullscreen
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
state: "normal",
bounds: {
width: 770, height: 440
width: 850, height: 500
}
});
});