mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 13:32:54 +08:00
style(components): add line breaks, edit comments
This commit is contained in:
@ -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)}
|
||||
|
@ -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();
|
||||
|
@ -36,4 +36,4 @@ export class SelectOption {
|
||||
return <slot></slot>;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user