-
Notifications
You must be signed in to change notification settings - Fork 2
/
experiment.js
57 lines (33 loc) · 903 Bytes
/
experiment.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
GIDGET.experiment = {
condition: "male", // control, male, female
verbose: false,
bonusPerLevel: 0.10,
isControl: function() {
if (this.condition === "control")
return true;
return false;
},
isMale: function() {
if (this.condition === "male")
return true;
return false;
},
isFemale: function() {
if (this.condition === "female")
return true;
return false;
},
isExperimental: function() {
if ((this.condition === "male") || (this.condition === "female"))
return true;
return false;
},
loadExpCondition: function() {
// Set the current experimental state from localStorage
this.condition = localStorage.getItem('expCondition').replace(/['"]/g,'');
},
saveExpCondition: function() {
// Save the current experimental state to localStorage
localStorage.setItem('expCondition', this.condition);
},
};