Sha256: 316b24d19ca8c7f8acce9452424e5ada23cb796c3431c36419402c1cec9cfe01

Contents?: true

Size: 1.62 KB

Versions: 15

Compression:

Stored size: 1.62 KB

Contents

/*
 * Easing Compatibility v1 - http://gsgd.co.uk/sandbox/jquery/easing
 *
 * Adds compatibility for applications that use the pre 1.2 easing names
 *
 * Copyright (c) 2007 George Smith
 * Licensed under the MIT License:
 *   http://www.opensource.org/licenses/mit-license.php
 */

(function($){
$.extend( $.easing,
{
	easeIn: function (x, t, b, c, d) {
		return $.easing.easeInQuad(x, t, b, c, d);
	},
	easeOut: function (x, t, b, c, d) {
		return $.easing.easeOutQuad(x, t, b, c, d);
	},
	easeInOut: function (x, t, b, c, d) {
		return $.easing.easeInOutQuad(x, t, b, c, d);
	},
	expoin: function(x, t, b, c, d) {
		return $.easing.easeInExpo(x, t, b, c, d);
	},
	expoout: function(x, t, b, c, d) {
		return $.easing.easeOutExpo(x, t, b, c, d);
	},
	expoinout: function(x, t, b, c, d) {
		return $.easing.easeInOutExpo(x, t, b, c, d);
	},
	bouncein: function(x, t, b, c, d) {
		return $.easing.easeInBounce(x, t, b, c, d);
	},
	bounceout: function(x, t, b, c, d) {
		return $.easing.easeOutBounce(x, t, b, c, d);
	},
	bounceinout: function(x, t, b, c, d) {
		return $.easing.easeInOutBounce(x, t, b, c, d);
	},
	elasin: function(x, t, b, c, d) {
		return $.easing.easeInElastic(x, t, b, c, d);
	},
	elasout: function(x, t, b, c, d) {
		return $.easing.easeOutElastic(x, t, b, c, d);
	},
	elasinout: function(x, t, b, c, d) {
		return $.easing.easeInOutElastic(x, t, b, c, d);
	},
	backin: function(x, t, b, c, d) {
		return $.easing.easeInBack(x, t, b, c, d);
	},
	backout: function(x, t, b, c, d) {
		return $.easing.easeOutBack(x, t, b, c, d);
	},
	backinout: function(x, t, b, c, d) {
		return $.easing.easeInOutBack(x, t, b, c, d);
	}
});})(jQuery);

Version data entries

15 entries across 15 versions & 7 rubygems

Version Path
start_bootstrap_admin_theme-0.1.2 vendor/assets/javascripts/start_bootstrap_admin_theme/vendor/jquery-easing/jquery.easing.compatibility.js
startbootstrap-stylish-portfolio-jekyll-0.1.0 assets/jquery-easing/jquery.easing.compatibility.js
start_bootstrap_admin_theme-0.1.1 vendor/assets/javascripts/start_bootstrap_admin_theme/vendor/jquery-easing/jquery.easing.compatibility.js
start_bootstrap_admin_theme-0.1.1.pre.alpha vendor/assets/javascripts/start_bootstrap_admin_theme/vendor/jquery-easing/jquery.easing.compatibility.js
sb_admin_2_rails-0.1.1 vendor/assets/jquery-easing/jquery.easing.compatibility.js
sb_admin_2_rails-0.1.0 vendor/assets/jquery-easing/jquery.easing.compatibility.js
codebuild-0.6.3 docs/vendor/jquery-easing/jquery.easing.compatibility.js
codepipeline-0.3.0 docs/vendor/jquery-easing/jquery.easing.compatibility.js
codebuild-0.6.2 docs/vendor/jquery-easing/jquery.easing.compatibility.js
codepipeline-0.2.1 docs/vendor/jquery-easing/jquery.easing.compatibility.js
codepipeline-0.2.0 docs/vendor/jquery-easing/jquery.easing.compatibility.js
codebuild-0.6.1 docs/vendor/jquery-easing/jquery.easing.compatibility.js
codebuild-0.6.0 docs/vendor/jquery-easing/jquery.easing.compatibility.js
jekyll-theme-voiladt-0.1.0 assets/vendor/jquery-easing/jquery.easing.compatibility.js
jekyll-theme-startbootstrap-agency-0.2.4 assets/vendor/jquery-easing/jquery.easing.compatibility.js