mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-28 19:16:02 +00:00
15 lines
419 B
JavaScript
15 lines
419 B
JavaScript
![]() |
import Ember from 'ember';
|
||
|
import ApplicationRouteMixin from 'ember-simple-auth/mixins/application-route-mixin';
|
||
|
|
||
|
export default Ember.Route.extend(ApplicationRouteMixin, {
|
||
|
init() {
|
||
|
this._super(...arguments);
|
||
|
Ember.run.scheduleOnce('afterRender', this, 'processLegacyDomOperations');
|
||
|
},
|
||
|
|
||
|
processLegacyDomOperations() {
|
||
|
window.legacySearch();
|
||
|
// window.legacyTree();
|
||
|
window.legacyMain();
|
||
|
}
|
||
|
})
|