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:
parent
cc3b2a3f36
commit
2ebd108f43
4 changed files with 38 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue