mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-17 14:30:28 +00:00
14 lines
No EOL
418 B
JavaScript
14 lines
No EOL
418 B
JavaScript
/*
|
|
* mobile button unit tests
|
|
*/
|
|
(function($){
|
|
$.mobile.page.prototype.options.keepNative = "button.should-be-native";
|
|
|
|
test( "button elements in the keepNative set shouldn't be enhanced", function() {
|
|
same( $("button.should-be-native").siblings("div.ui-slider").length, 0 );
|
|
});
|
|
|
|
test( "button elements should be enhanced", function() {
|
|
ok( $("#enhanced").hasClass( "ui-btn-hidden" ) );
|
|
});
|
|
})( jQuery ); |