소스 검색

bugfix in Node.nodes

Nicolas Cannasse 19 년 전
부모
커밋
466d880fd3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      std/flash/Boot.hx

+ 1 - 1
std/flash/Boot.hx

@@ -173,7 +173,7 @@ class Boot {
 			Node.prototype.nodes = function() {
 				return untyped {
 					p : 0,
-					a : childNodes,
+					a : this.childNodes,
 					next : function() {
 						while( true ) {
 							var x = this.a[this.p];