2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

DEV: s/this._super()/this._super(...arguments) (#6908)

This commit is contained in:
Joffrey JAFFEUX 2019-01-19 10:05:51 +01:00 committed by GitHub
parent 61fff098ed
commit 502b1316d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
111 changed files with 174 additions and 151 deletions

View file

@ -14,7 +14,7 @@ export default Ember.Controller.extend({
closedPollResult: "on_close",
init() {
this._super();
this._super(...arguments);
this._setupPoll();
},