diff --git a/src/definitions/modules/nag.js b/src/definitions/modules/nag.js index 6e57e3406..63cf2a573 100644 --- a/src/definitions/modules/nag.js +++ b/src/definitions/modules/nag.js @@ -483,4 +483,11 @@ $.fn.nag.settings = { }; +// Adds easing +$.extend( $.easing, { + easeOutQuad: function (x, t, b, c, d) { + return -c *(t/=d)*(t-2) + b; + } +}); + })( jQuery, window, document );