Skip to content

Commit 4fbcda7

Browse files
authoredMar 23, 2017
fix(alert): add missing cssClass property for buttons
Commit 46fe1ff defined the `AlertButton` interface for the `buttons` array, but it's missing the `cssClass` property as described in the **Button options** section of the docs: http://ionicframework.com/docs/v2/api/components/alert/AlertController/#advanced
1 parent e07aad4 commit 4fbcda7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎src/components/alert/alert-options.ts

+1
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,6 @@ export interface AlertInputOptions {
2727
export interface AlertButton {
2828
text?: string;
2929
role?: string;
30+
cssClass?: string;
3031
handler?: Function;
3132
};

0 commit comments

Comments
 (0)
Please sign in to comment.