##// END OF EJS Templates
Added tag v1.0.1 for changeset b71d8639b457
Added tag v1.0.1 for changeset b71d8639b457

File last commit:

r8:b71d8639b457 v1.0.1 default
r9:26f5ab96b729 default
Show More
NodeListFxTests.ts
7 lines | 286 B | video/mp2t | TypeScriptLexer
import "dojo/NodeList-fx";
declare const nl: dojo.NodeList<Node>;
const anim: dojo._base.Animation = nl.fadeIn();
const anim2: dojo._base.Animation = nl.fadeIn({duration: 500});
const nl2: typeof nl = nl.fadeOut({auto: true, onEnd: () => {}});
const other = nl.fadeOut({auto: false});