From d014fc099c0968de68482ed2e9d902a0524fd612 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 30 Nov 2017 16:17:34 -0700 Subject: [PATCH] ENH: Drop Overview and add loading indicators (#49) --- app/routes/index.js | 6 +++++- app/templates/application.hbs | 3 --- app/templates/collections/loading.hbs | 1 + 3 files changed, 6 insertions(+), 4 deletions(-) create mode 100644 app/templates/collections/loading.hbs diff --git a/app/routes/index.js b/app/routes/index.js index ed916b6..88a3843 100644 --- a/app/routes/index.js +++ b/app/routes/index.js @@ -3,4 +3,8 @@ import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-rout const { Route } = Ember; -export default Route.extend(AuthenticatedRouteMixin, {}); +export default Route.extend(AuthenticatedRouteMixin, { + afterModel() { + this.transitionTo('collections'); + }, +}); diff --git a/app/templates/application.hbs b/app/templates/application.hbs index 4b555ce..51cd191 100644 --- a/app/templates/application.hbs +++ b/app/templates/application.hbs @@ -3,9 +3,6 @@