mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
parent
98c0047b4e
commit
0b57f851bd
File diff suppressed because one or more lines are too long
@ -49,7 +49,8 @@ var EventLogContents = React.createClass({
|
|||||||
view: view
|
view: view
|
||||||
});
|
});
|
||||||
|
|
||||||
view.addListener("add recalculate", this.onEventLogChange);
|
view.addListener("add", this.onEventLogChange);
|
||||||
|
view.addListener("recalculate", this.onEventLogChange);
|
||||||
},
|
},
|
||||||
closeView: function () {
|
closeView: function () {
|
||||||
this.state.view.close();
|
this.state.view.close();
|
||||||
|
@ -53,7 +53,9 @@ var MainView = React.createClass({
|
|||||||
});
|
});
|
||||||
|
|
||||||
view.addListener("recalculate", this.onRecalculate);
|
view.addListener("recalculate", this.onRecalculate);
|
||||||
view.addListener("add update remove", this.onUpdate);
|
view.addListener("add", this.onUpdate);
|
||||||
|
view.addListener("update", this.onUpdate);
|
||||||
|
view.addListener("remove", this.onUpdate);
|
||||||
view.addListener("remove", this.onRemove);
|
view.addListener("remove", this.onRemove);
|
||||||
},
|
},
|
||||||
onRecalculate: function () {
|
onRecalculate: function () {
|
||||||
|
Loading…
Reference in New Issue
Block a user