summaryrefslogtreecommitdiff
path: root/tests/qml/data/send.html
blob: 7d601a820fba3b21bfcfa03e7a7c26fe2f9ed687 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
    <head>
        <script type="text/javascript" src="qrc:///qwebchannel/qwebchannel.js"></script>
        <script type="text/javascript">
            //BEGIN SETUP
            var baseUrl = (/[?&]webChannelBaseUrl=([A-Za-z0-9\-:/\.]+)/.exec(location.search)[1]);
            new QWebChannel(baseUrl, function(channel) {
                channel.subscribe("myMessage", function(payload) {
                    channel.send("myMessagePong:" + payload);
                });
            }, true);
            //END SETUP
        </script>
    </head>
    <body>
    </body>
</html>