Change configuration style

This commit is contained in:
mauriziovitale84
2016-07-08 15:57:37 +01:00
parent 20cbf1737e
commit 6cf01d1757
2 changed files with 17 additions and 13 deletions

View File

@@ -44,16 +44,16 @@ export class LoginDemoComponent {
console.log($event);
}
toggleECM(value) {
if (value === '10') {
toggleECM(checked) {
if (checked) {
this.providers[0] = 'ECM';
} else {
this.providers[0] = '';
}
}
toggleBPM(value) {
if (value === '10') {
toggleBPM(checked) {
if (checked) {
this.providers[1] = 'BPM';
} else {
this.providers[1] = '';