You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
388 B
13 lines
388 B
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; |
|
});
|
|
|