From c7a584cb56c7b0292f71d4aef6f7415a53b543a3 Mon Sep 17 00:00:00 2001 From: Tankred Hase Date: Tue, 3 Sep 2013 15:25:02 +0200 Subject: [PATCH] open new ui in chrome app --- src/background.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/background.js b/src/background.js index 360c558..a6c3202 100644 --- a/src/background.js +++ b/src/background.js @@ -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 + } + }); }); \ No newline at end of file