mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-14 18:52:05 +03:00
4c72c318d5
closes #2855 , closes #2848 - New mixin that utilizes NProgress for displaying a loading indictor for all routes who's model issue a "loading" event (aka: when requesting data from the server during a route change). - Also removing (the now unnecessary) "loading" template.
12 lines
345 B
JavaScript
12 lines
345 B
JavaScript
import styleBody from 'ghost/mixins/style-body';
|
|
import loadingIndicator from 'ghost/mixins/loading-indicator';
|
|
|
|
var ResetRoute = Ember.Route.extend(styleBody, loadingIndicator, {
|
|
classNames: ['ghost-reset'],
|
|
setupController: function (controller, params) {
|
|
controller.token = params.token;
|
|
}
|
|
});
|
|
|
|
export default ResetRoute;
|