HamShield/examples/APRSMessenger/background.js

14 lines
227 B
JavaScript
Raw Normal View History

chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create("window.html", {
"bounds": {
"width": 685,
"height": 800
}
});
});
$(function() {
$( "#tabs" ).tabs();
});