Skip to content

Commit 2ae28be

Browse files
committed
fix lint;
1 parent 5bc9692 commit 2ae28be

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

src/demo-app/a11y/tabs/routes.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import {Routes} from '@angular/router';
2+
3+
import {SunnyTabContent, RainyTabContent, FoggyTabContent} from './tabs-a11y';
4+
5+
export const TABS_DEMO_ROUTES: Routes = [
6+
{path: '', redirectTo: 'sunny-tab', pathMatch: 'full'},
7+
{path: 'sunny-tab', component: SunnyTabContent},
8+
{path: 'rainy-tab', component: RainyTabContent},
9+
{path: 'foggy-tab', component: FoggyTabContent},
10+
];

src/demo-app/a11y/tabs/tabs-a11y.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import {Component} from '@angular/core';
2-
import {Observable} from 'rxjs/Observable';
32

43
@Component({
54
moduleId: module.id,
@@ -20,7 +19,7 @@ export class TabsAccessibilityDemo {
2019
{
2120
label: 'German Shepherd',
2221
content: `The German Shepherd is a breed of medium to large-sized working dog that originated
23-
in Germany. The breed's officially recognized name is German Shepherd Dog in the
22+
in Germany. The breed's officially recognized name is German Shepherd Dog in the
2423
English language. The breed is also known as the Alsatian in Britain and Ireland.`
2524
}, {
2625
label: 'Labrador Retriever',
@@ -31,11 +30,11 @@ export class TabsAccessibilityDemo {
3130
label: 'Rottweiler',
3231
disabled: true,
3332
content: `The Rottweiler is a breed of domestic dog, regarded as medium-to-large or large.
34-
The dogs were known in German as Rottweiler Metzgerhund, meaning Rottweil butchers' dogs,
33+
The dogs were known in German as Rottweiler Metzgerhund, meaning Rottweil butchers' dogs,
3534
because their main use was to ...`
3635
}, {
3736
label: 'Beagle',
38-
content: `The Beagle is a breed of small hound, similar in appearance to the much larger
37+
content: `The Beagle is a breed of small hound, similar in appearance to the much larger
3938
foxhound. The beagle is a scent hound, developed primarily for hunting hare.`
4039
},
4140
];

0 commit comments

Comments
 (0)