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

7 lines
133 B
JavaScript

jvm.SimpleScale = function(scale){
this.scale = scale;
};
jvm.SimpleScale.prototype.getValue = function(value){
return value;
};