changed app to open in windowed mode, but stream in fullscreen

- this closes #45
- changed references of 'target' into 'host' as per #41
This commit is contained in:
R. Aidan Campbell
2016-05-05 17:35:45 -04:00
parent d22495955c
commit 35fb2c45ec
3 changed files with 44 additions and 40 deletions

View File

@@ -1,6 +1,6 @@
// just start the app in fullscreen
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
state: "fullscreen",
state: "normal",
});
});