From c7242a39d2b5798a6a987196ad8d2cb569c789f6 Mon Sep 17 00:00:00 2001 From: Gion Kunz Date: Sun, 8 Nov 2015 11:02:26 +0100 Subject: [PATCH] style(playground): use single quotes consistently --- modules/playground/src/routing/inbox-app.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/playground/src/routing/inbox-app.ts b/modules/playground/src/routing/inbox-app.ts index 90073315e6..875d3439ab 100644 --- a/modules/playground/src/routing/inbox-app.ts +++ b/modules/playground/src/routing/inbox-app.ts @@ -90,7 +90,7 @@ class DbService { } @Component({selector: 'inbox-detail'}) -@View({templateUrl: "inbox-detail.html", directives: [NgFor, RouterLink]}) +@View({templateUrl: 'inbox-detail.html', directives: [NgFor, RouterLink]}) class InboxDetailCmp { record: InboxRecord = new InboxRecord(); ready: boolean = false; @@ -102,7 +102,7 @@ class InboxDetailCmp { } @Component({selector: 'inbox'}) -@View({templateUrl: "inbox.html", directives: [NgFor, RouterLink]}) +@View({templateUrl: 'inbox.html', directives: [NgFor, RouterLink]}) class InboxCmp { items: InboxRecord[] = []; ready: boolean = false; @@ -128,7 +128,7 @@ class InboxCmp { @Component({selector: 'drafts'}) -@View({templateUrl: "drafts.html", directives: [NgFor, RouterLink]}) +@View({templateUrl: 'drafts.html', directives: [NgFor, RouterLink]}) class DraftsCmp { items: InboxRecord[] = []; ready: boolean = false; @@ -142,7 +142,7 @@ class DraftsCmp { } @Component({selector: 'inbox-app', viewProviders: [DbService]}) -@View({templateUrl: "inbox-app.html", directives: [RouterOutlet, RouterLink]}) +@View({templateUrl: 'inbox-app.html', directives: [RouterOutlet, RouterLink]}) @RouteConfig([ new Route({path: '/', component: InboxCmp, name: 'Inbox'}), new Route({path: '/drafts', component: DraftsCmp, name: 'Drafts'}),