diff options
Diffstat (limited to 'js/IntegerOp/BITSET.js')
-rw-r--r-- | js/IntegerOp/BITSET.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/IntegerOp/BITSET.js b/js/IntegerOp/BITSET.js index 377c9df6..ff9b5a7a 100644 --- a/js/IntegerOp/BITSET.js +++ b/js/IntegerOp/BITSET.js @@ -28,8 +28,8 @@ function BITSET() { return options; } BITSET.prototype.set = function BITSET() { - this.Datatype = parseFloat((arguments[0]["Datatype"])) - this.bit = parseFloat((arguments[0]["bit"])) + this.Datatype = arguments[0]["Datatype"] + this.bit = parseFloat(arguments[0]["bit"]) this.x = arg1; graphics = arg1.graphics; exprs = graphics.exprs; |