1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 00:05:33 +03:00

initial log window implementation

This commit is contained in:
cTn 2014-02-03 06:19:06 +01:00
parent cc3b2a3f36
commit 2ebd108f43
4 changed files with 38 additions and 3 deletions

View file

@ -2,7 +2,11 @@ function start_app() {
chrome.app.window.create('main.html', {
id: 'main-window',
frame: 'none',
resizable: false
resizable: false,
minWidth: 962,
minHeight: 729,
maxWidth: 962,
maxHeight: 729
}, function(window_child) {
window_child.onClosed.addListener(function() {
// connectionId is passed from the script side through the chrome.runtime.getBackgroundPage refference