git @ Cat's Eye Technologies HTML5-Gewgaws / ecdb251
yoob.Animation opportunities that were missed. Chris Pressey 10 years ago
3 changed file(s) with 5 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
157157 e.preventDefault();
158158 });
159159
160 yoob.setUpQuantumAnimationFrame(this);
160 this.animation = (new yoob.Animation()).init({ object: this });
161 this.animation.start();
161162 };
162163 };
2121 </article>
2222
2323 </body>
24 <script src="../common-yoob.js-0.6/animation.js"></script>
2425 <script src="fingerspelling.js"></script>
2526 <script>
2627 var canvas = document.getElementById('canvas');
7575 this.start = function(c) {
7676 canvas = c;
7777 ctx = canvas.getContext('2d');
78 yoob.setUpQuantumAnimationFrame(this);
78 this.animation = (new yoob.Animation()).init({ object: this });
79 this.animation.start();
7980 };
8081 };