Skip to content

Commit

Permalink
fix(examples.index2): remove some randomness
Browse files Browse the repository at this point in the history
  • Loading branch information
thgreasi committed Jun 19, 2016
1 parent 4a49a5b commit d839743
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/index2.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
}).then(function() {
var totalKeyValues = [];
for (var i = 0; i < n; i++) {
var key = ((Math.random() * n) | 0) + 'key';
var key = i + 'key';
var value = ((Math.random() * n) | 0) + 'value';
totalKeyValues.push([key, value]);
}
Expand Down

0 comments on commit d839743

Please sign in to comment.