11 lines
357 B
JavaScript
11 lines
357 B
JavaScript
window.pywebview._createApi(JSON.parse('%(functions)s'));
|
|
|
|
if (window.pywebview.platform == 'qtwebengine') {
|
|
new QWebChannel(qt.webChannelTransport, function(channel) {
|
|
window.pywebview._QWebChannel = channel;
|
|
window.dispatchEvent(new CustomEvent('pywebviewready'));
|
|
});
|
|
} else {
|
|
window.dispatchEvent(new CustomEvent('pywebviewready'));
|
|
}
|