Falkon Develop
Cross-platform Qt-based web browser
script.js
Go to the documentation of this file.
1function init() {
2 external.extra.helloQmlObject.clicked.connect(function(count){
3 alert('You clicked ' + count + ' times')
4 })
5}
6
7if (window._falkon_external) {
8 init();
9} else {
10 document.addEventListener("_falkon_external_created", init);
11}