Commit 0994efa6 authored by Gav Wood's avatar Gav Wood

Better HTML template in Mix.

Use happened in JS.
Debugging QML enabled.
parent d5166918
...@@ -590,6 +590,9 @@ var Filter = function(options, impl) { ...@@ -590,6 +590,9 @@ var Filter = function(options, impl) {
Filter.prototype.arrived = function(callback) { Filter.prototype.arrived = function(callback) {
this.changed(callback); this.changed(callback);
}; };
Filter.prototype.happened = function(callback) {
this.changed(callback);
};
/// gets called when there is new eth/shh message /// gets called when there is new eth/shh message
Filter.prototype.changed = function(callback) { Filter.prototype.changed = function(callback) {
......
This diff is collapsed.
This diff is collapsed.
...@@ -61,6 +61,9 @@ var Filter = function(options, impl) { ...@@ -61,6 +61,9 @@ var Filter = function(options, impl) {
Filter.prototype.arrived = function(callback) { Filter.prototype.arrived = function(callback) {
this.changed(callback); this.changed(callback);
}; };
Filter.prototype.happened = function(callback) {
this.changed(callback);
};
/// gets called when there is new eth/shh message /// gets called when there is new eth/shh message
Filter.prototype.changed = function(callback) { Filter.prototype.changed = function(callback) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment