pa-os-desktopclient
Version:
22 lines (17 loc) • 422 B
JavaScript
;
{
const webview_configurer = require('./configurer.js');
module.exports = { install };
function install(sel, first_url) {
console.log("Installing...");
webview_configurer.install(sel, { first_url });
addEventListener('load', setup);
}
function setup() {
console.log("Setting up...");
setTimeout( () => run(), 0 );
}
function run() {
console.log("Running...");
}
}