mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
15 lines
No EOL
499 B
JavaScript
15 lines
No EOL
499 B
JavaScript
/*
|
|
* fallback transition for slideup in non-3D supporting browsers (which tend to handle complex transitions poorly in general
|
|
*/
|
|
|
|
//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude);
|
|
define( [ "jquery", "jquery.mobile.transition" ], function( $ ) {
|
|
//>>excludeEnd("jqmBuildExclude");
|
|
(function( $, window, undefined ) {
|
|
|
|
$.mobile.transitionFallbacks.slideup = "fade";
|
|
|
|
})( jQuery, this );
|
|
//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude);
|
|
});
|
|
//>>excludeEnd("jqmBuildExclude");
|