Changeset 10000
- Timestamp:
- 08/07/07 05:57:36 (11 months ago)
- Files:
-
- 1 modified
-
dojo/trunk/tests/fx.html (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dojo/trunk/tests/fx.html
r9915 r10000 12 12 doh.register("t", 13 13 [ 14 function slideOut(t){14 function wipeOut(t){ 15 15 dojo.byId("foo").style.height = ""; 16 var s = dojo.fx. slideOut({node: "foo", duration: 500 });16 var s = dojo.fx.wipeOut({node: "foo", duration: 500 }); 17 17 var d = new doh.Deferred(); 18 18 dojo.connect(s, "onEnd", function(){ … … 23 23 }, 24 24 25 function slideIn(t){25 function wipeIn(t){ 26 26 dojo.byId("foo").style.height = "0px"; 27 var s = dojo.fx. slideIn({node: "foo", duration: 500 }).play();27 var s = dojo.fx.wipeIn({node: "foo", duration: 500 }).play(); 28 28 var d = new doh.Deferred(); 29 29 dojo.connect(s, "onEnd", function(){ … … 60 60 node: "foo", 61 61 hideDuration: 1000, 62 hideFunc: dojo.fx. slideOut,63 showFunc: dojo.fx. slideIn62 hideFunc: dojo.fx.wipeOut, 63 showFunc: dojo.fx.wipeIn 64 64 }); 65 65 t.hide();