Update jQuery UI DialogOptions.width property type from number to any.

Example usage: $('#el').dialog({width: 'auto'});
This commit is contained in:
Dan Ludwig
2012-12-21 12:01:11 -05:00
parent e4bd0e59e0
commit 804f74e8db
+1 -1
View File
@@ -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;
}