2012-01-09 15:51:35 +00:00
|
|
|
/*
|
|
|
|
|
* fallback transition for flow in non-3D supporting browsers (which tend to handle complex transitions poorly in general
|
|
|
|
|
*/
|
|
|
|
|
|
2012-01-12 17:36:46 +00:00
|
|
|
//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude);
|
2012-01-13 05:22:00 +00:00
|
|
|
define( [ "jquery", "jquery.mobile.transition" ], function( $ ) {
|
2012-01-12 17:36:46 +00:00
|
|
|
//>>excludeEnd("jqmBuildExclude");
|
2012-01-09 15:51:35 +00:00
|
|
|
(function( $, window, undefined ) {
|
|
|
|
|
|
|
|
|
|
$.mobile.transitionFallbacks.flow = "fade";
|
|
|
|
|
|
|
|
|
|
})( jQuery, this );
|
2012-01-12 17:36:46 +00:00
|
|
|
//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude);
|
|
|
|
|
});
|
|
|
|
|
//>>excludeEnd("jqmBuildExclude");
|