style(components): add line breaks, edit comments

This commit is contained in:
Brandy Carney
2017-08-22 16:09:12 -04:00
parent 8671efe78b
commit 1276224a5e
3 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,6 @@ export class ActionSheet {
@Prop() subTitle: string;
@Prop() buttons: ActionSheetButton[];
@Prop() enableBackdropDismiss: boolean = true;
@Prop() showBackdrop: boolean = true;
@Prop() enterAnimation: AnimationBuilder;
@Prop() exitAnimation: AnimationBuilder;
@ -173,6 +172,7 @@ export class ActionSheet {
return b;
})
.filter(b => b !== null);
return [
<ion-backdrop
onClick={this.backdropClick.bind(this)}

View File

@ -1,7 +1,7 @@
import { Animation } from '../../../index';
/**
* iOS Action Sheet Animation
* iOS Action Sheet Enter Animation
*/
export default function(Animation: Animation, baseElm: HTMLElement) {
const baseAnimation = new Animation();