[TemporaryStorage] add files required for SDK build
[samples/web/TemporaryStorage.git] / tizen-web-ui-fw / latest / js / src / transitions / slide.js
1 /*
2 * fallback transition for slide in non-3D supporting browsers (which tend to handle complex transitions poorly in general
3 */
4
5 (function( $, window, undefined ) {
6
7 // Use the simultaneous transitions handler for slide transitions
8 $.mobile.transitionHandlers.slide = $.mobile.transitionHandlers.simultaneous;
9
10 // Set the slide transitions's fallback to "fade"
11 $.mobile.transitionFallbacks.slide = "fade";
12
13 })( jQuery, this );