From f0f0fc6493e34e9120b4b0c533b4fff962098024 Mon Sep 17 00:00:00 2001 From: Domenico Date: Sat, 28 Sep 2019 19:45:13 +0200 Subject: [PATCH] Fix default blockerClass option in documentation The blockerClass option default in documentation is different from the one in code --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 56c1a1f..63b446f 100644 --- a/README.md +++ b/README.md @@ -185,7 +185,7 @@ $.modal.defaults = { closeClass: '', // Add additional class(es) to the close tag. showClose: true, // Shows a (X) icon/link in the top-right corner modalClass: "modal", // CSS class added to the element being displayed in the modal. - blockerClass: "modal", // CSS class added to the overlay (blocker). + blockerClass: "jquery-modal", // CSS class added to the overlay (blocker). // HTML appended to the default spinner during AJAX requests. spinnerHtml: '
',