style(playground): use single quotes consistently

This commit is contained in:
Gion Kunz 2015-11-08 11:02:26 +01:00 committed by Jeremy Elbourn
parent 4fa1809f80
commit c7242a39d2

View File

@ -90,7 +90,7 @@ class DbService {
} }
@Component({selector: 'inbox-detail'}) @Component({selector: 'inbox-detail'})
@View({templateUrl: "inbox-detail.html", directives: [NgFor, RouterLink]}) @View({templateUrl: 'inbox-detail.html', directives: [NgFor, RouterLink]})
class InboxDetailCmp { class InboxDetailCmp {
record: InboxRecord = new InboxRecord(); record: InboxRecord = new InboxRecord();
ready: boolean = false; ready: boolean = false;
@ -102,7 +102,7 @@ class InboxDetailCmp {
} }
@Component({selector: 'inbox'}) @Component({selector: 'inbox'})
@View({templateUrl: "inbox.html", directives: [NgFor, RouterLink]}) @View({templateUrl: 'inbox.html', directives: [NgFor, RouterLink]})
class InboxCmp { class InboxCmp {
items: InboxRecord[] = []; items: InboxRecord[] = [];
ready: boolean = false; ready: boolean = false;
@ -128,7 +128,7 @@ class InboxCmp {
@Component({selector: 'drafts'}) @Component({selector: 'drafts'})
@View({templateUrl: "drafts.html", directives: [NgFor, RouterLink]}) @View({templateUrl: 'drafts.html', directives: [NgFor, RouterLink]})
class DraftsCmp { class DraftsCmp {
items: InboxRecord[] = []; items: InboxRecord[] = [];
ready: boolean = false; ready: boolean = false;
@ -142,7 +142,7 @@ class DraftsCmp {
} }
@Component({selector: 'inbox-app', viewProviders: [DbService]}) @Component({selector: 'inbox-app', viewProviders: [DbService]})
@View({templateUrl: "inbox-app.html", directives: [RouterOutlet, RouterLink]}) @View({templateUrl: 'inbox-app.html', directives: [RouterOutlet, RouterLink]})
@RouteConfig([ @RouteConfig([
new Route({path: '/', component: InboxCmp, name: 'Inbox'}), new Route({path: '/', component: InboxCmp, name: 'Inbox'}),
new Route({path: '/drafts', component: DraftsCmp, name: 'Drafts'}), new Route({path: '/drafts', component: DraftsCmp, name: 'Drafts'}),