diff --git a/src/core/PaperScope.js b/src/core/PaperScope.js index 683870b7..00a233c6 100644 --- a/src/core/PaperScope.js +++ b/src/core/PaperScope.js @@ -113,6 +113,12 @@ var PaperScope = Base.extend(/** @lends PaperScope# */{ return this._tool; }, + /** + * The list of available tools. + * @name PaperScope#tools + * @type Tool[] + */ + /** * A reference to the local scope. This is required, so `paper` will always * refer to the local scope, even when calling into it from another scope. @@ -125,12 +131,6 @@ var PaperScope = Base.extend(/** @lends PaperScope# */{ return this; }, - /** - * The list of available tools. - * @name PaperScope#tools - * @type Tool[] - */ - evaluate: function(code) { var res = paper.PaperScript.evaluate(code, this); View.updateFocus();