From 5f466bbc7eef572f144d8f124631f38eefab5367 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Sat, 28 Dec 2013 22:48:50 +0100 Subject: [PATCH] Move documentation for PaperScope#tools to the right place. --- src/core/PaperScope.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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();