refactor(demos): forms and input

This commit is contained in:
Drew Rygh
2015-11-04 19:37:41 -06:00
parent 19ce43a182
commit a766c20d65
50 changed files with 306 additions and 296 deletions

View File

@ -1,48 +1,5 @@
import {App, IonicApp, Page} from 'ionic/ionic';
import {forwardRef} from 'angular2/angular2';
import * as helpers from '../helpers';
@Page({
templateUrl: 'inputs/checkbox.html',
directives: [forwardRef(() => helpers.AndroidAttribute)]
})
export class CheckboxPage{
constructor() {
}
}
@Page({
templateUrl: 'inputs/radio.html',
directives: [forwardRef(() => helpers.AndroidAttribute)]
})
export class RadioPage{
constructor() {
}
}
@Page({
templateUrl: 'inputs/range.html',
directives: [forwardRef(() => helpers.AndroidAttribute)]
})
export class RangePage{
constructor() {
}
}
@Page({
templateUrl: 'inputs/select.html',
directives: [forwardRef(() => helpers.AndroidAttribute)]
})
export class SelectPage{
constructor() {
}
}
@Page({
templateUrl: 'inputs/switch.html',
directives: [forwardRef(() => helpers.AndroidAttribute)]
})
export class SwitchPage{
constructor() {
}
}
export * from './checkbox/pages';
export * from './radio/pages';
export * from './range/pages';
export * from './select/pages';
export * from './switch/pages';