messageHandler expects object instead of string

This commit is contained in:
Marek Kotewicz
2014-10-22 16:12:41 +02:00
parent ea3048421f
commit f7c9c8928e
4 changed files with 16 additions and 7 deletions

14
qt.js
View File

@ -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);
},
});