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-26 09:28:20 +01:00
committed by Damiano
parent c40d648bd1
commit f002d391cd
+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;
}