Merge pull request #70 from 67P/feature/loading-indicator

Feature: Loading indicator
This commit was merged in pull request #70.
This commit is contained in:
2018-06-14 19:24:03 +02:00
committed by GitHub
5 changed files with 0 additions and 17 deletions
-1
View File
@@ -7,7 +7,6 @@ const Router = EmberRouter.extend({
});
Router.map(function() {
this.route('spinner');
this.route('proposals', function() {
this.route('new');
});
-4
View File
@@ -1,4 +0,0 @@
import Route from '@ember/routing/route';
export default Route.extend({
});
-1
View File
@@ -1 +0,0 @@
{{loading-spinner}}
-11
View File
@@ -1,11 +0,0 @@
import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';
module('Unit | Route | spinner', function(hooks) {
setupTest(hooks);
test('it exists', function(assert) {
let route = this.owner.lookup('route:spinner');
assert.ok(route);
});
});