Changeset 9269
- Timestamp:
- 06/23/07 12:42:02 (19 months ago)
- Location:
- dojox/trunk/presentation
- Files:
-
- 1 added
- 2 modified
-
tests/test_presentation.html (modified) (2 diffs)
-
tests/_ext1.html (added)
-
_base.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dojox/trunk/presentation/tests/test_presentation.html
r9267 r9269 72 72 73 73 </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> 75 75 <div dojoType="dojox.presentation.Slide" title="Click Blocking" noClick="true" id="animated"> 76 76 <p>You cannot click on this page</p> … … 90 90 </div> 91 91 <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> 94 93 </div> 95 94 </div> -
dojox/trunk/presentation/_base.js
r9267 r9269 154 154 onEnd: dojo.hitch(this,function(){ 155 155 this._hideChild(oldWidget); 156 this._showChild(newWidget);157 156 }) 158 157 })); 159 158 } 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, 162 160 onEnd: dojo.hitch(this,function(){ 163 161 this._showChild(newWidget); 164 162 newWidget._resetActions(); 165 163 }) 166 })); */164 })); 167 165 dojo.fx.combine(anims).play(); 168 166 }