Changeset 9269

Show
Ignore:
Timestamp:
06/23/07 12:42:02 (19 months ago)
Author:
dante
Message:

sorry- fixes a reference to local file for href="" test, and broken
reverse _transition override ... refs #3506

Location:
dojox/trunk/presentation
Files:
1 added
2 modified

Legend:

Unmodified
Added
Removed
  • dojox/trunk/presentation/tests/test_presentation.html

    r9267 r9269  
    7272                         
    7373                </div> 
    74                 <div dojoType="dojox.presentation.Slide" title="Lazy Loading Remote Slide" href="/dojobox/lorem.html"></div> 
     74                <div dojoType="dojox.presentation.Slide" title="Remote Slide" href="_ext1.html"></div> 
    7575                <div dojoType="dojox.presentation.Slide" title="Click Blocking" noClick="true" id="animated"> 
    7676                        <p>You cannot click on this page</p> 
     
    9090                        </div> 
    9191                        <div style="width:400px; position:absolute; right: 40px; bottom:100px;"> 
    92                         <p>... so I'm providing a next button: <button dojoType="dijit.form.Button" value="Next"  
    93 onClick="dijit.byId('testPresentation').nextSlide();">Next</button></p> 
     92                        <p>... so I'm providing a next button: <button dojoType="dijit.form.Button" value="Next" onClick="dijit.byId('testPresentation').nextSlide();">Next</button></p> 
    9493                        </div> 
    9594                </div> 
  • dojox/trunk/presentation/_base.js

    r9267 r9269  
    154154                                onEnd: dojo.hitch(this,function(){ 
    155155                                        this._hideChild(oldWidget); 
    156                                         this._showChild(newWidget);  
    157156                                }) 
    158157                        })); 
    159158                } 
    160                 /* 
    161                 anims.push(dojo.fadeIn({ node:newWidget.domNode, start:0, end:1, duration:250,  
     159                anims.push(dojo.fadeIn({ node:newWidget.domNode, start:0, end:1, duration:300,  
    162160                        onEnd: dojo.hitch(this,function(){ 
    163161                                this._showChild(newWidget); 
    164162                                newWidget._resetActions(); 
    165163                                })  
    166                 })); */ 
     164                }));  
    167165                dojo.fx.combine(anims).play(); 
    168166        }