Changeset 6898 for trunk/api

Show
Ignore:
Timestamp:
12/14/06 18:14:57 (2 years ago)
Author:
owen
Message:

Fix expand/collapse bug

Location:
trunk/api
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/api/ApiRef.js

    r6897 r6898  
    786786                var replaceCallback = function() { 
    787787                        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); 
    789793                } 
    790794                dojo.lfx.wipeOut(node, outTime, null, replaceCallback).play(); 
  • trunk/api/index.html

    r6897 r6898  
    3737        <img src="img/minus.gif"> 
    3838        <img src="img/plus.gif"> 
    39         <!-- tree images --> 
     39        <!-- tree images : DISABLING THESE because the path to these changes on dojotoolkit.org  
    4040        <img src="../src/widget/templates/images/TreeV3/i.gif"> 
    4141        <img src="../src/widget/templates/images/TreeV3/i_half.gif"> 
     
    4848        <br> 
    4949        <img src="../src/widget/templates/images/TreeV3/i_long.gif"> 
     50        --> 
    5051</div> 
    5152