summaryrefslogtreecommitdiff
path: root/tests/qml/data/respond.html
blob: 5f0e7fc689c2be2844e096f823bd23b7b5ec443c (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" src="testsetup.js"></script>
        <script type="text/javascript">
            //BEGIN SETUP
            createWebChannel(function(channel) {
                channel.exec("foobar", function(response) {
                    channel.send("received:"+response);
                });
            }, true /* raw */);
            //END SETUP
        </script>
    </head>
    <body>
    </body>
</html>