openpdu/static/bower_components/jvectormap/lib/ordinal-scale.js
2020-12-23 10:11:11 +01:00

7 lines
147 B
JavaScript

jvm.OrdinalScale = function(scale){
this.scale = scale;
};
jvm.OrdinalScale.prototype.getValue = function(value){
return this.scale[value];
};