This commit is contained in:
Marek Kotewicz
2015-01-15 16:01:58 +01:00
parent 46b932ccc0
commit ec74fc05d4
4 changed files with 17 additions and 7 deletions

View File

@ -92,7 +92,7 @@ var setupInputTypes = function () {
// two's complement
// TODO: fix big numbers support
value = ((value) >>> 0).toString(16)
value = ((value) >>> 0).toString(16);
return padLeft(value, padding, 'f');
}
value = value.toString(16);