Fixing integer decision.

This commit is contained in:
marcins78@gmail.com
2011-11-13 18:03:07 +00:00
parent efb7158810
commit 6bb050e3fd

View File

@@ -954,8 +954,8 @@ var GempLotrGameUI = Class.extend({
$("#integerDecision").SpinnerControl({ type: 'range',
typedata: {
min: min,
max: max,
min: parseInt(min),
max: parseInt(max),
interval: 1,
decimalplaces: 0
},