Skip to content
This repository has been archived by the owner on Feb 29, 2020. It is now read-only.

Commit

Permalink
fix(addon): #821 - increase group size for experiment delete menu
Browse files Browse the repository at this point in the history
  • Loading branch information
ncloudioj committed Jun 9, 2016
1 parent 5952364 commit f7de231
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/ActivityStreams.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,9 @@ function ActivityStreams(options = {}) {

this._experimentData = {};
let rng = seedrandom(options.clientID);
// Targeting 10% of users for this experiment
if (rng() <= 0.1) {
// Targeting at 50% of users for this experiment, the actual size
// is subject to the distribution of 'client_id'
if (rng() <= 0.5) {
this._experimentData.id = "exp-001-delete-menu";
this._experimentData.reverseMenuOptions = true;
} else {
Expand Down

0 comments on commit f7de231

Please sign in to comment.