overte-JulianGro/scripts/developer/utilities/render/luci2.js
2019-04-15 09:16:59 -07:00

10 lines
No EOL
317 B
JavaScript

function openView() {
// Set up the qml ui
var window = Desktop.createWindow(Script.resolvePath('luci.qml'), {
title: this.title,
presentationMode: Desktop.PresentationMode.NATIVE,
size: {x: 300, y: 400}
});
//window.closed.connect(function() { Script.stop(); });
}
openView();