quorum/qt.js

28 lines
724 B
JavaScript
Raw Normal View History

2014-10-20 15:26:34 -07:00
(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.data));
});
}
};
2014-10-20 15:26:34 -07:00
QtProvider.prototype.send = function(payload) {
navigator.qt.postMessage(JSON.stringify(payload));
2014-10-20 15:26:34 -07:00
};
2014-10-20 15:26:34 -07:00
Object.defineProperty(QtProvider.prototype, "onmessage", {
set: function(handler) {
this.handlers.push(handler);
2014-10-20 15:26:34 -07:00
},
});
if(typeof(web3) !== "undefined" && web3.providers !== undefined) {
web3.providers.QtProvider = QtProvider;
2014-10-20 15:26:34 -07:00
}
})();