チェンジセット 1495
- コミット日時:
- 2008/10/04 10:41:21 (3 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
ruby/jsplash/trunk/client2/index.xml
r1494 r1495 54 54 <div id="progbar"><div> </div></div> 55 55 <p id="statusout"> </p> 56 <p id="sout">starting <em>JSplash Player 0.4. 0</em>...<br />-------------------------------------<br /></p>56 <p id="sout">starting <em>JSplash Player 0.4.1</em>...<br />-------------------------------------<br /></p> 57 57 <svg id="svgrt" xmlns="http://www.w3.org/2000/svg" style="width: 100px; height: 100px;"> 58 58 </svg> ruby/jsplash/trunk/client2/jsplash/executor.js
r1494 r1495 78 78 79 79 this.additionals = []; 80 this.executed = {}; 80 81 for (eid in tlist) { 81 82 mobj = tlist[eid]; … … 91 92 92 93 this.additionals = []; 94 this.executed = {}; 93 95 // jump set? 94 96 for (eid in tlist) { … … 137 139 138 140 advanceFrame: function(mobj, jumps) { 141 if (this.executed[mobj.instance_uid]) 142 return; 143 144 this.executed[mobj.instance_uid] = true; 139 145 for(;jumps>=0;jumps--) { 140 146 while(1) { ruby/jsplash/trunk/client2/jsplash/objects.js
r1494 r1495 109 109 110 110 resume: function(depth) { 111 112 111 113 112 if (this.shape_disposed) /* Though this object is not sleeping, can be disposed when parent is sleeping */ … … 127 126 this.play(); 128 127 this.rewind(); 129 130 128 } 131 129 132 130 if (this.isExecutable()) // This is needed to execute descendant tags! 133 this.executor.registerObject(this); 134 }, 131 { 132 this.executor.registerObject(this); 133 } 134 }, 135 135 136 136 appendViewAtDepth: function(obj, depth) {

