mirror of
https://github.com/supanadit/todo.git
synced 2024-11-10 09:52:19 +00:00
7 lines
147 B
JavaScript
7 lines
147 B
JavaScript
|
jvm.OrdinalScale = function(scale){
|
||
|
this.scale = scale;
|
||
|
};
|
||
|
|
||
|
jvm.OrdinalScale.prototype.getValue = function(value){
|
||
|
return this.scale[value];
|
||
|
};
|