mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
7dfb9f1967
* initial commit of webconfig * update example config with webconfig and fix format of file update debian postinst script for install example config
18 lines
361 B
JavaScript
18 lines
361 B
JavaScript
/*global chrome */
|
|
chrome.app.runtime.onLaunched.addListener(function () {
|
|
'use strict';
|
|
chrome.app.window.create('index.html', {
|
|
'id': 'fakeIdForSingleton',
|
|
'innerBounds': {
|
|
'width': 320,
|
|
'height': 480,
|
|
'minWidth': 320,
|
|
'minHeight': 480
|
|
},
|
|
resizable: false
|
|
});
|
|
});
|
|
|
|
|
|
|