betaflight-configurator/background.js

20 lines
822 B
JavaScript
Raw Normal View History

2013-04-08 15:29:52 +00:00
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('main.html', {
frame: 'chrome',
id: 'main-window',
minWidth: 960,
maxWidth: 960,
minHeight: 600,
maxHeight: 600
2013-06-19 11:06:14 +00:00
}, function(window_child) {
window_child.onClosed.addListener(function() {
// connectionId is passed from the script side through the chrome.runtime.getBackgroundPage refference
// allowing us to automatically close the port when application shut down
if (connectionId != -1) {
2013-06-19 11:55:20 +00:00
chrome.serial.close(connectionId, function() {
2013-06-19 11:06:14 +00:00
console.log('CLEANUP: Connection to serial port was opened after application closed, closing the connection.');
});
}
});
2013-04-08 15:29:52 +00:00
});
});