Skip to content

Commit 70d723f

Browse files
committed
line 84 fix array access.
1 parent de2ceda commit 70d723f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/app/controllers/clientController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ define(['jquery', 'controllers/tableController', 'helper/mpc', 'alertify', 'aler
8181
var x = Math.floor(pos[0] * 100);
8282
var y = Math.floor(pos[1] * 1000);
8383
//each array stores # of hits at this area
84-
analytics['mouse_positions'][x][y]++;
84+
analytics.mouse_positions[x][y]++;
8585
}
8686

8787
let startDate = new Date();

0 commit comments

Comments
 (0)