Skip to content

Commit

Permalink
Fixed Issue #11: IE "Set Active" experimenter issue
Browse files Browse the repository at this point in the history
Solved issue #11: the "Set Active" button in experimenter.php was not
functioning (specifically, it was not calling the "setActive" function).
Problem has been fixed.
  • Loading branch information
nolach committed Jun 10, 2013
1 parent 970ec6d commit 011f007
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions core/js/experimenter.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ function initExperimenter()
$(function()
{
$("input[type=button]").button();
$("#set-active").click(setActive);
});


Expand Down
2 changes: 1 addition & 1 deletion experimenter.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</div>
</div>
<div class='selector-button-list'>
<input type="button" id="set-active" name="set-active" onClick="setActive()" value="Set Active" disabled="disabled">
<input type="button" id="set-active" name="set-active" value="Set Active">
<!-- <input type="button" id="view-stats" name="view-stats"onclick="viewStats()" value="View Statistics" disabled="disabled"> -->
</div>
</div>
Expand Down

0 comments on commit 011f007

Please sign in to comment.