From 4d66aa6397cf0e1ab8d1ee208e40011bfc9f32bf Mon Sep 17 00:00:00 2001 From: Scott Jehl Date: Wed, 20 Jul 2011 15:29:08 -0700 Subject: [PATCH] added input types url and tel to auto-init. --- js/jquery.mobile.forms.textinput.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/jquery.mobile.forms.textinput.js b/js/jquery.mobile.forms.textinput.js index 95ce8248..fbf98a8a 100644 --- a/js/jquery.mobile.forms.textinput.js +++ b/js/jquery.mobile.forms.textinput.js @@ -9,7 +9,7 @@ //auto self-init widgets $( document ).bind( "pagecreate enhance", function( e ){ - $( "input[type='text'], input[type='search'], input[type='number'], input[type='password'], input[type='email'], textarea", e.target ) + $( "input[type='text'], input[type='search'], input[type='number'], input[type='password'], input[type='email'], input[type='url'], input[type='tel'], textarea", e.target ) .not( ":jqmData(role='none'), :jqmData(role='nojs')" ) .textinput(); });