diff --git a/src/util/PaperScript.js b/src/core/PaperScript.js similarity index 100% rename from src/util/PaperScript.js rename to src/core/PaperScript.js diff --git a/src/load.js b/src/load.js index d8297f66..bc6b4e99 100644 --- a/src/load.js +++ b/src/load.js @@ -78,8 +78,9 @@ var sources = [ 'src/util/CanvasProvider.js', 'src/util/Numerical.js', - 'src/util/PaperScript.js', 'src/util/BlendMode.js' + + 'src/core/PaperScript.js', ]; // Load unit tests after library if asked to do so diff --git a/src/paper.js b/src/paper.js index dcd6ceab..2cbeaaa0 100644 --- a/src/paper.js +++ b/src/paper.js @@ -99,9 +99,10 @@ var paper = new function() { //#include "util/CanvasProvider.js" //#include "util/Numerical.js" -//#include "util/PaperScript.js" //#include "util/BlendMode.js" +//#include "core/PaperScript.js" + // Finally inject the classes set on 'this' into the PaperScope class and create // the first PaperScope and return it, all in one statement. return new (PaperScope.inject(this));