DEV: Remove unnecessary functions (#15113)
This commit is contained in:
parent
1b9cf1b1c7
commit
fb5e871dff
|
@ -19,10 +19,6 @@ configureEyeline();
|
|||
|
||||
// Track visible elements on the screen.
|
||||
export default EmberObject.extend(Evented, {
|
||||
init() {
|
||||
this._super(...arguments);
|
||||
},
|
||||
|
||||
update() {
|
||||
if (_skipUpdate) {
|
||||
return;
|
||||
|
|
|
@ -58,11 +58,6 @@ const ApplicationRoute = DiscourseRoute.extend(OpenComposer, {
|
|||
this.documentTitle.setTitle(tokens.join(" - "));
|
||||
},
|
||||
|
||||
// We need an empty method here for Ember to fire the action properly on all routes.
|
||||
willTransition() {
|
||||
this._super(...arguments);
|
||||
},
|
||||
|
||||
postWasEnqueued(details) {
|
||||
showModal("post-enqueued", {
|
||||
model: details,
|
||||
|
|
Loading…
Reference in New Issue