Add a page for toggling the cookie used for the new layout experiment
This commit is contained in:
parent
b66551ec48
commit
83d25d8c2b
4 changed files with 56 additions and 1 deletions
10
static/partials/exp-new-layout.html
Normal file
10
static/partials/exp-new-layout.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
<div class="page-content">
|
||||
<div class="cor-title">
|
||||
<span class="cor-title-link"></span>
|
||||
<span class="cor-title-content">Experiment: New Layout</span>
|
||||
</div>
|
||||
<div class="co-main-content-panel">
|
||||
<button class="btn btn-success" ng-if="!isEnabled" ng-click="setEnabled(true)">Enable Experiment</button>
|
||||
<button class="btn btn-failure" ng-if="isEnabled" ng-click="setEnabled(false)">Disable Experiment</button>
|
||||
</div>
|
||||
</div>
|
Reference in a new issue