mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
fix(alert): add missing cssClass property for buttons
Commit 46fe1ff53c 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
This commit is contained in:
committed by
GitHub
parent
e07aad460d
commit
4fbcda7440
@@ -27,5 +27,6 @@ export interface AlertInputOptions {
|
||||
export interface AlertButton {
|
||||
text?: string;
|
||||
role?: string;
|
||||
cssClass?: string;
|
||||
handler?: Function;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user