docs(all): cleanups

* Changing " to '

The header value was using ".

* Update readme.md

* Adding Semicolons

Console.log were missing semicolons making tslint mad
This commit is contained in:
Chris Griffith
2018-08-22 15:49:30 -07:00
committed by Manu MA
parent 3d6caae13f
commit d1ed57e68e

View File

@ -48,7 +48,7 @@ export class AlertExample {
}, {
text: 'Okay',
handler: () => {
console.log('Confirm Okay')
console.log('Confirm Okay');
}
}
]
@ -109,12 +109,12 @@ export class AlertExample {
role: 'cancel',
cssClass: 'secondary',
handler: () => {
console.log('Confirm Cancel')
console.log('Confirm Cancel');
}
}, {
text: 'Ok',
handler: () => {
console.log('Confirm Ok')
console.log('Confirm Ok');
}
}
]
@ -171,12 +171,12 @@ export class AlertExample {
role: 'cancel',
cssClass: 'secondary',
handler: () => {
console.log('Confirm Cancel')
console.log('Confirm Cancel');
}
}, {
text: 'Ok',
handler: () => {
console.log('Confirm Ok')
console.log('Confirm Ok');
}
}
]
@ -238,12 +238,12 @@ export class AlertExample {
role: 'cancel',
cssClass: 'secondary',
handler: () => {
console.log('Confirm Cancel')
console.log('Confirm Cancel');
}
}, {
text: 'Ok',
handler: () => {
console.log('Confirm Ok')
console.log('Confirm Ok');
}
}
]