summaryrefslogtreecommitdiff
path: root/examples/qmlapp/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qmlapp/index.html')
-rw-r--r--examples/qmlapp/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/qmlapp/index.html b/examples/qmlapp/index.html
index 981b208..7c904ab 100644
--- a/examples/qmlapp/index.html
+++ b/examples/qmlapp/index.html
@@ -4,7 +4,7 @@
<script>
function load() {
navigator.webChannel.init();
- navigator.webChannel.exec({a:1}, function(response) {
+ navigator.webChannel.exec({a:"This is a request from HTML"}, function(response) {
document.body.innerHTML = response.b;
});
}