allow form data to be passed to $.mobile.changePage as a query string or object.

This commit is contained in:
scottjehl 2011-01-26 22:04:36 -05:00
parent 61bee4e276
commit 9a492d06fd

View file

@ -299,6 +299,10 @@
isFormRequest = true;
//make get requests bookmarkable
if( data && type == 'get' ){
if($.type( data ) == "object" ){
data = $.param(data);
}
url += "?" + data;
data = undefined;
}