open new ui in chrome app

This commit is contained in:
Tankred Hase 2013-09-03 15:25:02 +02:00
parent 02c53c2631
commit c7a584cb56
1 changed files with 6 additions and 6 deletions

View File

@ -1,10 +1,10 @@
'use strict';
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
'bounds': {
'width': 1024,
'height': 650
}
});
chrome.app.window.create('ui/index.html', {
'bounds': {
'width': 1024,
'height': 768
}
});
});