mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 05:37:34 +03:00
2afc1ff04f
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.
9 lines
314 B
JavaScript
9 lines
314 B
JavaScript
import styleBody from 'ghost/mixins/style-body';
|
|
import AuthenticatedRoute from 'ghost/routes/authenticated';
|
|
import loadingIndicator from 'ghost/mixins/loading-indicator';
|
|
|
|
var SettingsRoute = AuthenticatedRoute.extend(styleBody, loadingIndicator, {
|
|
classNames: ['settings']
|
|
});
|
|
|
|
export default SettingsRoute; |