mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
1ff8528597
* Initial WebUI with sample functions * Changed folder structure * Light Reset Button and Translation fixing in Links * Indentation fixed * Reorganized menu and new function for setting effects * Styling fix
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
|
|
});
|
|
});
|
|
|
|
|
|
|