aboutsummaryrefslogtreecommitdiffstats
path: root/qt.js
diff options
context:
space:
mode:
authorMarek Kotewicz <marek.kotewicz@gmail.com>2014-10-22 22:12:41 +0800
committerMarek Kotewicz <marek.kotewicz@gmail.com>2014-10-22 22:12:41 +0800
commitf7c9c8928eaca89a7bd02d7cc2e53049d7c43fef (patch)
tree31c05ea64b23bca36cf043e9e115b74c5b7e4c90 /qt.js
parentea3048421fb54abd98f610d79294634015d0e58e (diff)
downloaddexon-f7c9c8928eaca89a7bd02d7cc2e53049d7c43fef.tar.gz
dexon-f7c9c8928eaca89a7bd02d7cc2e53049d7c43fef.tar.zst
dexon-f7c9c8928eaca89a7bd02d7cc2e53049d7c43fef.zip
messageHandler expects object instead of string
Diffstat (limited to 'qt.js')
-rw-r--r--qt.js14
1 files changed, 12 insertions, 2 deletions
diff --git a/qt.js b/qt.js
index 39c0a89a9..1b146c30d 100644
--- a/qt.js
+++ b/qt.js
@@ -1,12 +1,22 @@
(function() {
- var QtProvider = function() {};
+ var QtProvider = function() {
+ this.handlers = [];
+
+ var self = this;
+ navigator.qt.onmessage = function (message) {
+ self.handlers.forEach(function (handler) {
+ handler.call(self, JSON.parse(message));
+ });
+ }
+ };
+
QtProvider.prototype.send = function(payload) {
navigator.qt.postData(JSON.stringify(payload));
};
Object.defineProperty(QtProvider.prototype, "onmessage", {
set: function(handler) {
- navigator.qt.onmessage = handler;
+ this.handlers.push(handler);
},
});