We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45e37ce commit 4c8ee95Copy full SHA for 4c8ee95
ionic/components/loading/loading.ts
@@ -224,6 +224,7 @@ class LoadingCmp {
224
export interface LoadingOptions {
225
spinner?: string;
226
content?: string;
227
+ cssClass?: string;
228
showBackdrop?: boolean;
229
dismissOnPageChange?: boolean;
230
delay?: number;
ionic/components/loading/test/basic/index.ts
@@ -10,7 +10,8 @@ class E2EPage {
10
presentLoadingIos() {
11
let loading = Loading.create({
12
spinner: 'ios',
13
- duration: 1000
+ duration: 1000,
14
+ cssClass: 'my-custom-loader'
15
});
16
17
loading.onDismiss(() => {
0 commit comments