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,12 +8,13 @@
ns.SimplePen = function() { ns.SimplePen = function() {
this.toolId = "tool-pen"; this.toolId = "tool-pen";
this.helpText = "Pen tool" this.helpText = "Pen tool";
};
this.previousCol = null; this.previousCol = null;
this.previousRow = null; this.previousRow = null;
};
pskl.utils.inherit(ns.SimplePen, ns.BaseTool); pskl.utils.inherit(ns.SimplePen, ns.BaseTool);
/** /**