From 966021b226287ecd995ff5a9004b3ee4ae2c9ebf Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Wed, 23 Jun 2021 16:11:40 +0300 Subject: [PATCH] Docs: Fix SweetAlert library name --- docs/en/UI/AspNetCore/JavaScript-API/Message.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/UI/AspNetCore/JavaScript-API/Message.md b/docs/en/UI/AspNetCore/JavaScript-API/Message.md index 68c74914c6..55c241a333 100644 --- a/docs/en/UI/AspNetCore/JavaScript-API/Message.md +++ b/docs/en/UI/AspNetCore/JavaScript-API/Message.md @@ -1,6 +1,6 @@ # ASP.NET Core MVC / Razor Pages UI: JavaScript Message API -Message API is used to show nice looking messages to the user as a blocking dialog. Message API is an abstraction provided by the ABP Framework and implemented using the [SweetAlert2](https://sweetalert2.github.io/) library by default. +Message API is used to show nice looking messages to the user as a blocking dialog. Message API is an abstraction provided by the ABP Framework and implemented using the [SweetAlert](https://sweetalert.js.org/) library by default. ## Quick Example @@ -90,7 +90,7 @@ abp.message.confirm( ## SweetAlert Configuration -The Message API is implemented using the [SweetAlert2](https://sweetalert2.github.io/) library by default. If you want to change its configuration, you can set the options in the `abp.libs.sweetAlert.config` object. The default configuration object is shown below: +The Message API is implemented using the [SweetAlert](https://sweetalert.js.org/) library by default. If you want to change its configuration, you can set the options in the `abp.libs.sweetAlert.config` object. The default configuration object is shown below: ````js { @@ -124,5 +124,5 @@ So, if you want to set the `warn` icon, you can set it like: abp.libs.sweetAlert.config.warn.icon = 'error'; ```` -See the [SweetAlert document](https://sweetalert2.github.io/) for all the configuration options. +See the [SweetAlert](https://sweetalert.js.org/) for all the configuration options.