Merge remote-tracking branch 'origin/master'

This commit is contained in:
Jürg Lehni 2011-07-24 19:42:04 +01:00
commit b6c684c1b4
2 changed files with 2 additions and 3 deletions

View file

@ -30,7 +30,8 @@
var lightness = (Math.random() - 0.5) * 0.4 + 0.4;
var hue = Math.random() * 360;
path.style = {
fillColor: new HSLColor(hue, 1, lightness)
fillColor: new HSLColor(hue, 1, lightness),
strokeColor: 'black'
};
};

View file

@ -54,8 +54,6 @@ var Tool = this.Tool = Base.extend(/** @lends Tool# */{
this._firstMove = true;
this._count = 0;
this._downCount = 0;
for (var i in handlers)
this[i] = handlers[i];
},
/**