Skip to content

Commit

Permalink
Make toggle label congruent to improve UX
Browse files Browse the repository at this point in the history
  • Loading branch information
Gitoffthelawn authored Jan 8, 2019
1 parent c024ada commit 33da0f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h1>REDIRECTOR</h1>
<div class="disabled"><span ng-show="disabled">Disabled</span></div>
<button ng-click="toggleDisabled()">{{disabled ? 'Enable Redirector' : 'Disable Redirector'}}</button>
<button ng-click="openRedirectorSettings()">Edit Redirects</button>
<label><input type="checkbox" ng-model="logging" ng-click="toggleLogging()" /> Logging enabled</label>
<label><input type="checkbox" ng-model="enableNotifications" ng-click="toggleNotifications()" /> Enable Notifications</label>
<label><input type="checkbox" ng-model="logging" ng-click="toggleLogging()" /> Enable logging</label>
<label><input type="checkbox" ng-model="enableNotifications" ng-click="toggleNotifications()" /> Enable notifications</label>
</body>
</html>

0 comments on commit 33da0f3

Please sign in to comment.