Files
ionic-framework/src/components/button/test/block/index.ts
2016-05-31 15:49:12 -05:00

17 lines
268 B
TypeScript

import {Component} from '@angular/core';
import {ionicBootstrap} from '../../../../../src';
@Component({
templateUrl: 'main.html'
})
class E2EPage {
blockButton = true;
toggleBlock() {
this.blockButton = !this.blockButton;
}
}
ionicBootstrap(E2EPage);