mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-07 13:22:07 -05:00
Rename loop function to frame.
This commit is contained in:
parent
a20f988511
commit
189182b77c
1 changed files with 5 additions and 5 deletions
|
@ -147,14 +147,14 @@ var PaperScript = new function() {
|
|||
try {
|
||||
var onFrame = eval('onFrame');
|
||||
if (onFrame) {
|
||||
function loop() {
|
||||
function frame() {
|
||||
// Request next frame already
|
||||
Event.requestAnimationFrame(loop, doc && doc.canvas);
|
||||
Event.requestAnimationFrame(frame, doc && doc.canvas);
|
||||
onFrame();
|
||||
// Automatically redraw document each frame.
|
||||
doc && doc.redraw();
|
||||
}
|
||||
Event.requestAnimationFrame(loop, doc && doc.canvas);
|
||||
Event.requestAnimationFrame(frame, doc && doc.canvas);
|
||||
}
|
||||
} catch (e) {
|
||||
}
|
||||
|
@ -167,8 +167,8 @@ var PaperScript = new function() {
|
|||
//#ifdef BROWSER
|
||||
// Code borrowed from Coffee Script:
|
||||
function request(url) {
|
||||
var xhr = new (window.ActiveXObject
|
||||
|| XMLHttpRequest)('Microsoft.XMLHTTP');
|
||||
var xhr = new (window.ActiveXObject || XMLHttpRequest)(
|
||||
'Microsoft.XMLHTTP');
|
||||
xhr.open('GET', url, true);
|
||||
if ('overrideMimeType' in xhr) {
|
||||
xhr.overrideMimeType('text/plain');
|
||||
|
|
Loading…
Reference in a new issue