Fixed Qt provider

* postData => postMessage
* JSON.parse parsed wrong data on 'onmessage'
This commit is contained in:
Jeffrey Wilcke 2014-10-30 22:17:50 +01:00
parent aca9a41fcf
commit 5538ff7252
1 changed files with 2 additions and 2 deletions

4
qt.js
View File

@ -5,13 +5,13 @@
var self = this;
navigator.qt.onmessage = function (message) {
self.handlers.forEach(function (handler) {
handler.call(self, JSON.parse(message));
handler.call(self, JSON.parse(message.data));
});
}
};
QtProvider.prototype.send = function(payload) {
navigator.qt.postData(JSON.stringify(payload));
navigator.qt.postMessage(JSON.stringify(payload));
};
Object.defineProperty(QtProvider.prototype, "onmessage", {