Skip to content

Commit 7dc19c6

Browse files
author
David Baum
committed
make popup optional
1 parent 5e929bc commit 7dc19c6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

ui/scripts/Experiment/ExperimentController.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ var experimentController = (function() {
1515
showBackButton: false,
1616
showSureButton: true,
1717
showPopup: true,
18-
showTimer: true
1918
};
2019

2120

@@ -198,8 +197,9 @@ var experimentController = (function() {
198197
textArray.forEach(function(text){
199198
fullText = fullText + text + "<br/>";
200199
});
201-
202-
//showPopup(fullText, posx, posy, width, height, time);
200+
if(controllerConfig.showPopup) {
201+
showPopup(fullText, posx, posy, width, height, time);
202+
}
203203
setText(fullText);
204204
}
205205

0 commit comments

Comments
 (0)