diff --git a/core/src/components/loading/readme.md b/core/src/components/loading/readme.md index 58faecb2d4..cae76581ac 100644 --- a/core/src/components/loading/readme.md +++ b/core/src/components/loading/readme.md @@ -71,7 +71,6 @@ export class LoadingExample { async presentLoadingWithOptions() { const loading = await this.loadingController.create({ - cssClass: 'my-custom-class', spinner: null, duration: 5000, message: 'Click the backdrop to dismiss early...', @@ -113,7 +112,6 @@ async function presentLoading() { async function presentLoadingWithOptions() { const loading = document.createElement('ion-loading'); - loading.cssClass = 'my-custom-class'; loading.spinner = null; loading.duration = 5000; loading.message = 'Click the backdrop to dismiss early...'; @@ -185,7 +183,6 @@ export class LoadingExample { async presentLoadingWithOptions() { const loading = await loadingController.create({ - cssClass: 'my-custom-class', spinner: null, duration: 5000, message: 'Click the backdrop to dismiss early...', @@ -245,7 +242,6 @@ export default { presentLoadingWithOptions() { return this.$ionic.loadingController .create({ - cssClass: 'my-custom-class', spinner: null, duration: this.timeout, message: 'Click the backdrop to dismiss early...', diff --git a/core/src/components/loading/usage/angular.md b/core/src/components/loading/usage/angular.md index fc2ac989e6..4c3a939128 100644 --- a/core/src/components/loading/usage/angular.md +++ b/core/src/components/loading/usage/angular.md @@ -24,7 +24,6 @@ export class LoadingExample { async presentLoadingWithOptions() { const loading = await this.loadingController.create({ - cssClass: 'my-custom-class', spinner: null, duration: 5000, message: 'Click the backdrop to dismiss early...', diff --git a/core/src/components/loading/usage/javascript.md b/core/src/components/loading/usage/javascript.md index cf7b5ef417..b5f5afb183 100644 --- a/core/src/components/loading/usage/javascript.md +++ b/core/src/components/loading/usage/javascript.md @@ -16,7 +16,6 @@ async function presentLoading() { async function presentLoadingWithOptions() { const loading = document.createElement('ion-loading'); - loading.cssClass = 'my-custom-class'; loading.spinner = null; loading.duration = 5000; loading.message = 'Click the backdrop to dismiss early...'; diff --git a/core/src/components/loading/usage/stencil.md b/core/src/components/loading/usage/stencil.md index 2cedc0d236..880290fd95 100644 --- a/core/src/components/loading/usage/stencil.md +++ b/core/src/components/loading/usage/stencil.md @@ -22,7 +22,6 @@ export class LoadingExample { async presentLoadingWithOptions() { const loading = await loadingController.create({ - cssClass: 'my-custom-class', spinner: null, duration: 5000, message: 'Click the backdrop to dismiss early...', diff --git a/core/src/components/loading/usage/vue.md b/core/src/components/loading/usage/vue.md index 7f40ec25e5..1d3d572ad0 100644 --- a/core/src/components/loading/usage/vue.md +++ b/core/src/components/loading/usage/vue.md @@ -30,7 +30,6 @@ export default { presentLoadingWithOptions() { return this.$ionic.loadingController .create({ - cssClass: 'my-custom-class', spinner: null, duration: this.timeout, message: 'Click the backdrop to dismiss early...',