ENH: Drop Overview and add loading indicators (#49)

This commit is contained in:
Matthew Ryan Dillon 2017-11-30 16:17:34 -07:00 committed by GitHub
parent cb3bc081a6
commit d014fc099c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 4 deletions

View file

@ -3,4 +3,8 @@ import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-rout
const { Route } = Ember; const { Route } = Ember;
export default Route.extend(AuthenticatedRouteMixin, {}); export default Route.extend(AuthenticatedRouteMixin, {
afterModel() {
this.transitionTo('collections');
},
});

View file

@ -3,9 +3,6 @@
<div class="row"> <div class="row">
<div class="col-md-2 sidebar"> <div class="col-md-2 sidebar">
<ul class="nav nav-sidebar"> <ul class="nav nav-sidebar">
{{#link-to 'index' tagName='li' href=false}}
{{link-to 'Overview' 'index'}}
{{/link-to}}
{{#link-to 'collections' tagName='li' href=false}} {{#link-to 'collections' tagName='li' href=false}}
{{link-to 'Collections' 'collections'}} {{link-to 'Collections' 'collections'}}
{{/link-to}} {{/link-to}}

View file

@ -0,0 +1 @@
{{loading-spinner}}