mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-01 19:34:42 +00:00
11 lines
377 B
JavaScript
11 lines
377 B
JavaScript
|
|
/*
|
||
|
|
* mobile slider unit tests
|
||
|
|
*/
|
||
|
|
(function($){
|
||
|
|
$.mobile.page.prototype.options.keepNative = "input.should-be-native";
|
||
|
|
|
||
|
|
// not testing the positive case here since's it's obviously tested elsewhere
|
||
|
|
test( "slider elements in the keepNative set shouldn't be enhanced", function() {
|
||
|
|
same( $("input.should-be-native").siblings("div.ui-slider").length, 0 );
|
||
|
|
});
|
||
|
|
})( jQuery );
|