From 6b799dad71b3e6fa2534d4783906388dcf149b1c Mon Sep 17 00:00:00 2001 From: Jonathan Hinkle Date: Fri, 7 Jan 2011 12:33:59 -0500 Subject: [PATCH] added 'hidden' to the types of inputs not to be enhanced by textinput --- js/jquery.mobile.page.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/jquery.mobile.page.js b/js/jquery.mobile.page.js index e51cd507..4ee4d956 100644 --- a/js/jquery.mobile.page.js +++ b/js/jquery.mobile.page.js @@ -171,7 +171,7 @@ $.widget( "mobile.page", $.mobile.widget, { this.element .find( "input, textarea" ) - .not( "[type='radio'], [type='checkbox'], button, [type='button'], [type='submit'], [type='reset'], [type='image']" ) + .not( "[type='radio'], [type='checkbox'], button, [type='button'], [type='submit'], [type='reset'], [type='image'], [type='hidden']" ) .not(this.keepNative) .textinput();