Fix indent.

This commit is contained in:
msand 2013-11-24 17:36:35 +02:00
parent 3b22f185ce
commit 22a918190d

View file

@ -315,9 +315,9 @@ paper.PaperScope.prototype.PaperScript = (function(root) {
if (src) {
// If we're loading from a source, request that first and
// then run later.
paper.Http.request('get', src, function(scope, code) {
evaluate(code, scope);
}.bind(this, scope));
paper.Http.request('get', src, function(scope, code) {
evaluate(code, scope);
}.bind(this, scope));
} else {
// We can simply get the code form the script tag.
evaluate(script.innerHTML, scope);