i4way-dash/.svn/pristine/cc/ccebf7b60dd1053d3613ac0653c...

9 lines
205 B
Plaintext

ColorScale.prototype.setMax = function (max) {
this.clearMaxValue = max;
if (typeof this.normalize === 'function') {
this.maxValue = this.normalize(max);
} else {
this.maxValue = max;
}
};