diff --git a/docs/api/data-attributes.html b/docs/api/data-attributes.html index 0dba8d15d46..90cb49d8e44 100644 --- a/docs/api/data-attributes.html +++ b/docs/api/data-attributes.html @@ -189,6 +189,10 @@

Dialog

data-close-btn-text string - Text for the close button, dialog only + + data-corners + true | false + data-dom-cache true | false diff --git a/docs/pages/dialog/options.html b/docs/pages/dialog/options.html index ed9f5de5fb0..f132c911491 100644 --- a/docs/pages/dialog/options.html +++ b/docs/pages/dialog/options.html @@ -49,6 +49,15 @@

Dialog

$( ".selector" ).dialog({ closeBtnText: "Fermer" });
+
corners boolean
+
+

default: true

+

Sets whether to draw the dialo with rounded corners.

+

This option is also exposed as a data attribute: data-corners="false".

+ +
$( ".selector" ).dialog({ corners: false });
+
+
initSelector CSS selector string

default: ":jqmData(role='dialog')"