Files
openpdu/static/bower_components/jvectormap/lib/ordinal-scale.js
2019-08-18 23:21:16 +02:00

7 lines
147 B
JavaScript

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