AdminLTE/bower_components/jvectormap/lib/ordinal-scale.js
Abdullah Almsaeed b50004f17c Fix #1616
2018-07-15 11:11:21 -04:00

7 lines
No EOL
147 B
JavaScript

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