@@ -12,7 +12,7 @@
Analytics.prototype.sendEvent = function (action, data) {
// empty label and add the value, the value should be integer or null
- var value = parseInt(data);
+ var value = Math.round(parseFloat(data));
ga('send', 'event', 'jit.si', action, "", value ? value : null);
};