Fix variable scope on simplePen

This commit is contained in:
Vince 2012-09-16 00:47:24 +02:00
parent b4b59c97c6
commit 2e0826f714

View File

@ -8,11 +8,12 @@
ns.SimplePen = function() {
this.toolId = "tool-pen";
this.helpText = "Pen tool"
};
this.helpText = "Pen tool";
this.previousCol = null;
this.previousRow = null;
this.previousCol = null;
this.previousRow = null;
};
pskl.utils.inherit(ns.SimplePen, ns.BaseTool);