fix(alert): allow innerHTML in message

Closes #918
This commit is contained in:
Adam Bradley
2016-01-10 12:25:40 -06:00
parent c05d19606a
commit c2e753f780
2 changed files with 5 additions and 5 deletions

View File

@@ -27,7 +27,7 @@ class E2EPage {
doConfirm() {
let alert = Alert.create();
alert.setTitle('Confirm!');
alert.setMessage('Message text!!!');
alert.setMessage('Message <strong>text</strong>!!!');
alert.addButton({
text: 'Cancel',
handler: () => {
@@ -37,7 +37,7 @@ class E2EPage {
}
});
alert.addButton({
text: 'Ok',
text: 'Okay',
handler: () => {
console.log('Confirm Ok');
this.testConfirmResult = 'Ok';