mirror of
https://github.com/lubosz/overte.git
synced 2025-04-06 09:22:33 +02:00
27 lines
758 B
HTML
27 lines
758 B
HTML
<html>
|
|
<head>
|
|
<title>Properties</title>
|
|
<script type="text/javascript" src="jquery-2.1.4.min.js"></script>
|
|
<script type="text/javascript" src="qrc:///qtwebchannel/qwebchannel.js"></script>
|
|
<script type="text/javascript" src="eventBridgeLoader.js"></script>
|
|
<script>
|
|
window.onload = function() {
|
|
openEventBridge(function() {
|
|
EventBridge.scriptEventReceived.connect(function(message) {
|
|
console.log("HTML side received message: " + message);
|
|
});
|
|
});
|
|
}
|
|
|
|
testClick = function() {
|
|
EventBridge.emitWebEvent(["Foo", "Bar", { "baz": 1} ]);
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body class="properties">
|
|
<button name="Test" title="Test" onclick="testClick()">Test</button>
|
|
</body>
|
|
|
|
</html>
|
|
</body>
|