DEV: Remove unnecessary functions (#15113)

This commit is contained in:
Jarek Radosz 2021-11-28 12:45:32 +01:00 committed by GitHub
parent 1b9cf1b1c7
commit fb5e871dff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 9 deletions

View File

@ -19,10 +19,6 @@ configureEyeline();
// Track visible elements on the screen.
export default EmberObject.extend(Evented, {
init() {
this._super(...arguments);
},
update() {
if (_skipUpdate) {
return;

View File

@ -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,