File indexing completed on 2024-05-12 04:58:40

0001 function init() {
0002     external.extra.helloQmlObject.clicked.connect(function(count){
0003         alert('You clicked ' + count + ' times')
0004     })
0005 }
0006 
0007 if (window._falkon_external) {
0008     init();
0009 } else {
0010     document.addEventListener("_falkon_external_created", init);
0011 }