dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
14 lines (13 loc) • 388 B
JavaScript
define(["dojo/_base/lang", "dojo/_base/kernel", "dojo/fx/easing"],
function(lang,kernel,easing){
kernel.deprecated("dojox.fx.easing","Upgraded to Core, use dojo.fx.easing instead","2.0");
var fxExt = lang.getObject("dojox.fx",true);
fxExt.easing = easing;
/*=====
return {
// summary:
// An Alias to `dojo.fx.easing`. Moved to Core in Dojo 1.2.
};
=====*/
return easing;
});