set resolution to 800x600

This commit is contained in:
Tankred Hase 2013-06-04 23:40:20 +02:00
parent 4e02e91087
commit 800d73f505
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
'bounds': {
'width': 805,
'height': 620
'width': 800,
'height': 600
}
});
});