fix(popup): prevent popup flicker

Closes #669
This commit is contained in:
Adam Bradley
2015-12-02 08:52:30 -06:00
parent 7ac6ee4ccf
commit f6afdc2591
2 changed files with 4 additions and 2 deletions

View File

@ -32,6 +32,8 @@ ion-popup {
display: flex;
flex-direction: column;
opacity: 0;
}
input,

View File

@ -37,7 +37,7 @@ class E2EApp {
this.promptResult = name;
this.promptOpen = false;
}, () => {
console.error('Prompt closed');
console.log('Prompt closed');
this.promptOpen = false;
});
}
@ -56,7 +56,7 @@ class E2EApp {
this.confirmOpen = false;
}, () => {
this.confirmOpen = false;
console.error('NOT CONFIRMED');
console.log('NOT CONFIRMED');
});
}
}