mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-17 06:20:26 +00:00
18 lines
No EOL
606 B
JavaScript
18 lines
No EOL
606 B
JavaScript
/*
|
|
* fallback transition for flow in non-3D supporting browsers (which tend to handle complex transitions poorly in general
|
|
*/
|
|
|
|
//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude);
|
|
//>>description: Fallback transition for flow in non-3D supporting browsers
|
|
//>>label: Flow fallback transition
|
|
|
|
define( [ "jquery", "jquery.mobile.transition" ], function( $ ) {
|
|
//>>excludeEnd("jqmBuildExclude");
|
|
(function( $, window, undefined ) {
|
|
|
|
$.mobile.transitionFallbacks.flow = "fade";
|
|
|
|
})( jQuery, this );
|
|
//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude);
|
|
});
|
|
//>>excludeEnd("jqmBuildExclude");
|