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

View File

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

View File

@ -36,4 +36,4 @@ export class SelectOption {
return <slot></slot>; return <slot></slot>;
} }
} }