From 804f74e8dbc338eaa49bc3d5bd7222e157745eec Mon Sep 17 00:00:00 2001 From: Dan Ludwig Date: Fri, 21 Dec 2012 12:01:11 -0500 Subject: [PATCH] Update jQuery UI DialogOptions.width property type from number to any. Example usage: $('#el').dialog({width: 'auto'}); --- jqueryui/jqueryui-1.9.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jqueryui/jqueryui-1.9.d.ts b/jqueryui/jqueryui-1.9.d.ts index 293a1c9f46..4ce2cc2d98 100644 --- a/jqueryui/jqueryui-1.9.d.ts +++ b/jqueryui/jqueryui-1.9.d.ts @@ -182,7 +182,7 @@ interface DialogOptions { show?: any; // number, string or object stack?: bool; title?: string; - width?: number; + width?: any; // number or string zIndex?: number; }