Forgotten in previous commit.

This commit is contained in:
Jürg Lehni 2014-05-13 13:23:37 +02:00
parent 4464950301
commit 68db4f9b59

View file

@ -36,6 +36,10 @@ var Formatter = Base.extend(/** @lends Formatter# */{
return Math.round(val * this.multiplier) / this.multiplier;
},
pair: function(val1, val2, separator) {
return this.number(val1) + (separator || ',') + this.number(val2);
},
point: function(val, separator) {
return this.number(val.x) + (separator || ',') + this.number(val.y);
},