added input types url and tel to auto-init.

This commit is contained in:
Scott Jehl 2011-07-20 15:29:08 -07:00
parent 214e2e0c1a
commit 4d66aa6397

View file

@ -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();
});