Changeset 10000

Show
Ignore:
Timestamp:
08/07/07 05:57:36 (11 months ago)
Author:
peller
Message:

Rename slideIn/slideOut to wipeIn/wipeOut. Refs #3917

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • dojo/trunk/tests/fx.html

    r9915 r10000  
    1212                                doh.register("t",  
    1313                                        [ 
    14                                                 function slideOut(t){ 
     14                                                function wipeOut(t){ 
    1515                                                        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 }); 
    1717                                                        var d = new doh.Deferred(); 
    1818                                                        dojo.connect(s, "onEnd", function(){ 
     
    2323                                                }, 
    2424                                                 
    25                                                 function slideIn(t){ 
     25                                                function wipeIn(t){ 
    2626                                                        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(); 
    2828                                                        var d = new doh.Deferred(); 
    2929                                                        dojo.connect(s, "onEnd", function(){ 
     
    6060                                                            node: "foo", 
    6161                                                            hideDuration: 1000, 
    62                                                                 hideFunc: dojo.fx.slideOut, 
    63                                                                 showFunc: dojo.fx.slideIn  
     62                                                                hideFunc: dojo.fx.wipeOut, 
     63                                                                showFunc: dojo.fx.wipeIn  
    6464                                                        }); 
    6565                                                        t.hide();