openpdu/static/bower_components/jvectormap/lib/ordinal-scale.js

7 lines
147 B
JavaScript
Raw Normal View History

2020-12-23 09:11:11 +00:00
jvm.OrdinalScale = function(scale){
this.scale = scale;
};
jvm.OrdinalScale.prototype.getValue = function(value){
return this.scale[value];
};