Changeset 611
- Timestamp:
- 02/09/06 16:37:49 (4 years ago)
- Location:
- mochikit/trunk
- Files:
-
- 5 modified
-
MochiKit/DOM.js (modified) (2 diffs)
-
doc/html/MochiKit/VersionHistory.html (modified) (1 diff)
-
doc/html/MochiKit/index.html (modified) (1 diff)
-
doc/rst/MochiKit/VersionHistory.rst (modified) (1 diff)
-
packed/MochiKit/MochiKit.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mochikit/trunk/MochiKit/DOM.js
r608 r611 451 451 ) 452 452 ]; 453 var iextend = MochiKit.Iter.iextend;453 var forEach = MochiKit.Iter.forEach; 454 454 while (nodeStack.length) { 455 455 var n = nodeStack.shift(); … … 459 459 elem.appendChild(n); 460 460 } else { 461 iextend(nodeStack, n);461 forEach(n, nodeStack.unshift, nodeStack); 462 462 } 463 463 } -
mochikit/trunk/doc/html/MochiKit/VersionHistory.html
r605 r611 16 16 <p>2006-XX-XX v1.3</p> 17 17 <ul class="simple"> 18 <li>MochiKit.DOM.appendChildNodes and associated functions now append iterables 19 in the correct order.</li> 18 20 <li>New MochiKit-based SimpleTest test runner as a replacement for Test.Simple</li> 19 21 <li>MochiKit.Base.isNull no longer matches undefined</li> -
mochikit/trunk/doc/html/MochiKit/index.html
r605 r611 55 55 <p>2006-XX-XX v1.3</p> 56 56 <ul class="simple"> 57 <li>MochiKit.DOM.appendChildNodes and associated functions now append iterables 58 in the correct order.</li> 57 59 <li>New MochiKit-based SimpleTest test runner as a replacement for Test.Simple</li> 58 60 <li>MochiKit.Base.isNull no longer matches undefined</li> -
mochikit/trunk/doc/rst/MochiKit/VersionHistory.rst
r605 r611 1 1 2006-XX-XX v1.3 2 2 3 - MochiKit.DOM.appendChildNodes and associated functions now append iterables 4 in the correct order. 3 5 - New MochiKit-based SimpleTest test runner as a replacement for Test.Simple 4 6 - MochiKit.Base.isNull no longer matches undefined -
mochikit/trunk/packed/MochiKit/MochiKit.js
r608 r611 2641 2641 } 2642 2642 var _337=[self.coerceToDOM(MochiKit.Base.extend(null,arguments,1),elem)]; 2643 var _338=MochiKit.Iter. iextend;2643 var _338=MochiKit.Iter.forEach; 2644 2644 while(_337.length){ 2645 2645 var n=_337.shift(); … … 2649 2649 elem.appendChild(n); 2650 2650 }else{ 2651 _338( _337,n);2651 _338(n,_337.unshift,_337); 2652 2652 } 2653 2653 }
