Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 0d5877d

Browse files
authored
Merge pull request #3071 from IdeaBlade/relative-paths
chore: convert relative templateUrl/styleUrls to have ./ docs(style-guide): prefix with ./ and other improvements
2 parents 2f28b32 + 0056a68 commit 0d5877d

File tree

115 files changed

+309
-285
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+309
-285
lines changed

public/docs/_examples/animations/ts/app/hero-list-auto.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { Heroes } from './hero.service';
2323
</ul>
2424
`,
2525
// #enddocregion template
26-
styleUrls: ['hero-list.component.css'],
26+
styleUrls: ['./hero-list.component.css'],
2727

2828
/* When the element leaves (transition "in => void" occurs),
2929
* get the element's current computed height and animate

public/docs/_examples/animations/ts/app/hero-list-basic.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import { Heroes } from './hero.service';
3434
</ul>
3535
`,
3636
// #enddocregion template
37-
styleUrls: ['hero-list.component.css'],
37+
styleUrls: ['./hero-list.component.css'],
3838
// #enddocregion
3939
/**
4040
* Define two states, "inactive" and "active", and the end

public/docs/_examples/animations/ts/app/hero-list-combined-transitions.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { Heroes } from './hero.service';
2727
</ul>
2828
`,
2929
// #enddocregion template
30-
styleUrls: ['hero-list.component.css'],
30+
styleUrls: ['./hero-list.component.css'],
3131
/*
3232
* Define two states, "inactive" and "active", and the end
3333
* styles that apply whenever the element is in those states.

public/docs/_examples/animations/ts/app/hero-list-enter-leave-states.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { Heroes } from './hero.service';
2424
</ul>
2525
`,
2626
// #enddocregion template
27-
styleUrls: ['hero-list.component.css'],
27+
styleUrls: ['./hero-list.component.css'],
2828
/* The elements here have two possible states based
2929
* on the hero state, "active", or "inactive". We animate
3030
* six transitions: Between the two states in both directions,

public/docs/_examples/animations/ts/app/hero-list-enter-leave.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { Heroes } from './hero.service';
2323
</ul>
2424
`,
2525
// #enddocregion template
26-
styleUrls: ['hero-list.component.css'],
26+
styleUrls: ['./hero-list.component.css'],
2727
/* The element here always has the state "in" when it
2828
* is present. We animate two transitions: From void
2929
* to in and from in to void, to achieve an animated

public/docs/_examples/animations/ts/app/hero-list-groups.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { Heroes } from './hero.service';
2222
</li>
2323
</ul>
2424
`,
25-
styleUrls: ['hero-list.component.css'],
25+
styleUrls: ['./hero-list.component.css'],
2626
styles: [`
2727
li {
2828
padding: 0 !important;

public/docs/_examples/animations/ts/app/hero-list-inline-styles.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import { Heroes } from './hero.service';
2626
</ul>
2727
`,
2828
// #enddocregion template
29-
styleUrls: ['hero-list.component.css'],
29+
styleUrls: ['./hero-list.component.css'],
3030
/**
3131
* Define two states, "inactive" and "active", and the end
3232
* styles that apply whenever the element is in those states.

public/docs/_examples/animations/ts/app/hero-list-multistep.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { Heroes } from './hero.service';
2727
</ul>
2828
`,
2929
// #enddocregion template
30-
styleUrls: ['hero-list.component.css'],
30+
styleUrls: ['./hero-list.component.css'],
3131
/* The element here always has the state "in" when it
3232
* is present. We animate two transitions: From void
3333
* to in and from in to void, to achieve an animated

public/docs/_examples/animations/ts/app/hero-list-timings.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { Heroes } from './hero.service';
2222
</li>
2323
</ul>
2424
`,
25-
styleUrls: ['hero-list.component.css'],
25+
styleUrls: ['./hero-list.component.css'],
2626
/* The element here always has the state "in" when it
2727
* is present. We animate two transitions: From void
2828
* to in and from in to void, to achieve an animated

public/docs/_examples/animations/ts/app/hero-list-twoway.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { Heroes } from './hero.service';
2727
</ul>
2828
`,
2929
// #enddocregion template
30-
styleUrls: ['hero-list.component.css'],
30+
styleUrls: ['./hero-list.component.css'],
3131
/*
3232
* Define two states, "inactive" and "active", and the end
3333
* styles that apply whenever the element is in those states.

0 commit comments

Comments
 (0)