mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-18 15:00:23 +00:00
10 lines
No EOL
241 B
JavaScript
10 lines
No EOL
241 B
JavaScript
/*
|
|
* mobile textinput unit tests
|
|
*/
|
|
(function($){
|
|
module( "jquery.mobile.forms.textinput.js" );
|
|
|
|
test( "inputs without type specified are enhanced", function(){
|
|
ok( $( "#typeless-input" ).hasClass( "ui-input-text" ) );
|
|
});
|
|
})(jQuery); |