docs(buttons): fix template paths

This commit is contained in:
Drew Rygh
2015-11-06 13:28:54 -06:00
parent 52ff3949bb
commit ca002efa74
9 changed files with 9 additions and 9 deletions

View File

@ -3,7 +3,7 @@ import {forwardRef} from 'angular2/angular2';
import {AndroidAttribute} from '../../helpers'; import {AndroidAttribute} from '../../helpers';
@Page({ @Page({
templateUrl: 'buttons/block.html', templateUrl: 'buttons/block/block.html',
directives: [forwardRef(() => AndroidAttribute)] directives: [forwardRef(() => AndroidAttribute)]
}) })
export class BlockPage { export class BlockPage {

View File

@ -3,7 +3,7 @@ import {forwardRef} from 'angular2/angular2';
import {AndroidAttribute} from '../../helpers'; import {AndroidAttribute} from '../../helpers';
@Page({ @Page({
templateUrl: 'buttons/clear.html', templateUrl: 'buttons/clear/clear.html',
directives: [forwardRef(() => AndroidAttribute)] directives: [forwardRef(() => AndroidAttribute)]
}) })
export class ClearPage { export class ClearPage {

View File

@ -3,7 +3,7 @@ import {forwardRef} from 'angular2/angular2';
import {AndroidAttribute} from '../../helpers'; import {AndroidAttribute} from '../../helpers';
@Page({ @Page({
templateUrl: 'buttons/components.html', templateUrl: 'buttons/components/components.html',
directives: [forwardRef(() => AndroidAttribute)] directives: [forwardRef(() => AndroidAttribute)]
}) })
export class ComponentsPage { export class ComponentsPage {

View File

@ -3,7 +3,7 @@ import {forwardRef} from 'angular2/angular2';
import {AndroidAttribute} from '../../helpers'; import {AndroidAttribute} from '../../helpers';
@Page({ @Page({
templateUrl: 'buttons/fab.html', templateUrl: 'buttons/fab/fab.html',
directives: [forwardRef(() => AndroidAttribute)] directives: [forwardRef(() => AndroidAttribute)]
}) })
export class FabPage { export class FabPage {

View File

@ -3,7 +3,7 @@ import {forwardRef} from 'angular2/angular2';
import {AndroidAttribute} from '../../helpers'; import {AndroidAttribute} from '../../helpers';
@Page({ @Page({
templateUrl: 'buttons/full.html', templateUrl: 'buttons/full/full.html',
directives: [forwardRef(() => AndroidAttribute)] directives: [forwardRef(() => AndroidAttribute)]
}) })
export class FullPage { export class FullPage {

View File

@ -3,7 +3,7 @@ import {forwardRef} from 'angular2/angular2';
import {AndroidAttribute} from '../../helpers'; import {AndroidAttribute} from '../../helpers';
@Page({ @Page({
templateUrl: 'buttons/icons.html', templateUrl: 'buttons/icons/icons.html',
directives: [forwardRef(() => AndroidAttribute)] directives: [forwardRef(() => AndroidAttribute)]
}) })
export class IconsPage { export class IconsPage {

View File

@ -3,7 +3,7 @@ import {forwardRef} from 'angular2/angular2';
import {AndroidAttribute} from '../../helpers'; import {AndroidAttribute} from '../../helpers';
@Page({ @Page({
templateUrl: 'buttons/outline.html', templateUrl: 'buttons/outline/outline.html',
directives: [forwardRef(() => AndroidAttribute)] directives: [forwardRef(() => AndroidAttribute)]
}) })
export class OutlinePage { export class OutlinePage {

View File

@ -3,7 +3,7 @@ import {forwardRef} from 'angular2/angular2';
import {AndroidAttribute} from '../../helpers'; import {AndroidAttribute} from '../../helpers';
@Page({ @Page({
templateUrl: 'buttons/round.html', templateUrl: 'buttons/round/round.html',
directives: [forwardRef(() => AndroidAttribute)] directives: [forwardRef(() => AndroidAttribute)]
}) })
export class RoundPage { export class RoundPage {

View File

@ -3,7 +3,7 @@ import {forwardRef} from 'angular2/angular2';
import {AndroidAttribute} from '../../helpers'; import {AndroidAttribute} from '../../helpers';
@Page({ @Page({
templateUrl: 'buttons/sizes.html', templateUrl: 'buttons/sizes/sizes.html',
directives: [forwardRef(() => AndroidAttribute)] directives: [forwardRef(() => AndroidAttribute)]
}) })
export class SizesPage { export class SizesPage {