Feature: Loading indicator #70

Merged
fsmanuel merged 2 commits from feature/loading-indicator into master 2018-06-14 17:24:04 +00:00
4 changed files with 0 additions and 17 deletions
Showing only changes of commit 38d853a272 - Show all commits
-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);
});
});