##// END OF EJS Templates
added type parameter to Evented<T>, T is the event map...
added type parameter to Evented<T>, T is the event map _WidgetBase emit() and on() are now more strict, they accept only valid event names, or explicit `any` added _setValueAttr method to _FormMixin

File last commit:

r10:641c326d4bb4 v1.0.2 default
r10:641c326d4bb4 v1.0.2 default
Show More
NodeListFxTests.ts
7 lines | 314 B | video/mp2t | TypeScriptLexer
import * as NodeList from "dojo/NodeList-fx";
const nl: dojo.NodeList<Node> = new NodeList();
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});