- Timestamp:
- 12/14/06 18:14:57 (2 years ago)
- Location:
- trunk/api
- Files:
-
- 2 modified
-
ApiRef.js (modified) (1 diff)
-
index.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/api/ApiRef.js
r6897 r6898 786 786 var replaceCallback = function() { 787 787 node.innerHTML = newHtml; 788 setTimeout(function(){dojo.lfx.wipeIn(node, inTime).play()},100); 788 wipeInFunc = function(){ 789 node.style.height = ''; // necessary to make sure item resets to smaller size 790 dojo.lfx.wipeIn(node, inTime).play() 791 }; 792 setTimeout(wipeInFunc,100); 789 793 } 790 794 dojo.lfx.wipeOut(node, outTime, null, replaceCallback).play(); -
trunk/api/index.html
r6897 r6898 37 37 <img src="img/minus.gif"> 38 38 <img src="img/plus.gif"> 39 <!-- tree images -->39 <!-- tree images : DISABLING THESE because the path to these changes on dojotoolkit.org 40 40 <img src="../src/widget/templates/images/TreeV3/i.gif"> 41 41 <img src="../src/widget/templates/images/TreeV3/i_half.gif"> … … 48 48 <br> 49 49 <img src="../src/widget/templates/images/TreeV3/i_long.gif"> 50 --> 50 51 </div> 51 52