Skip to content

Commit 0b16ea5

Browse files
committed
Merge branch 'PF_analytics' of github.com:multiparty/web-mpc into PF_analytics
2 parents 1255cdb + de2ceda commit 0b16ea5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

client/app/controllers/clientController.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ define(['jquery', 'controllers/tableController', 'helper/mpc', 'alertify', 'aler
4343
for (var i = 0; i < 100; i++) {
4444
analytics.mouse_positions.push([]);
4545
for (var k = 0; k < 1000; k++) {
46-
analytics.mouse_positions[i].push([0])
46+
analytics.mouse_positions[i].push(0)
4747
}
4848
}
4949

@@ -438,8 +438,8 @@ define(['jquery', 'controllers/tableController', 'helper/mpc', 'alertify', 'aler
438438
var analytic_data = analytic_shares['data'];
439439
var analytic_mask = analytic_shares['mask'];
440440

441-
console.log("analytic data", analytic_data);
442-
console.log("analytic masks", analytic_mask);
441+
console.log('analytic data', analytic_data);
442+
console.log('analytic masks', analytic_mask);
443443
// Correlation using modified small pairwise 'hypercubes'. (one cube for each pair of questions)
444444
// For every pair of questions, compute and encrypt the two chosen answers.
445445
var pairwise_hypercubes = {};

0 commit comments

Comments
 (0)