parent
80c9dd2bb9
commit
5887d61207
3 changed files with 6 additions and 2 deletions
|
|
@ -1,3 +1,7 @@
|
|||
# 14.0.3
|
||||
|
||||
- send integer instead of float for normalizedX/Y coords (basically moving from 0-100 to 0-10000 range)
|
||||
|
||||
# 14.0.2
|
||||
|
||||
- fix logger check
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@openreplay/tracker",
|
||||
"description": "The OpenReplay tracker main package",
|
||||
"version": "14.0.2",
|
||||
"version": "14.0.3",
|
||||
"keywords": [
|
||||
"logging",
|
||||
"replay"
|
||||
|
|
|
|||
|
|
@ -262,5 +262,5 @@ export default function (app: App, options?: MouseHandlerOptions): void {
|
|||
* 0.39643 => 396.43 => 396 => 39.6%
|
||||
* */
|
||||
function roundNumber(num: number) {
|
||||
return Math.round(num * 1e3) / 1e1
|
||||
return Math.round(num * 1e4)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue