aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEinar Egilsson <einar@einaregilsson.com>2019-01-08 11:45:31 +0000
committerGitHub <noreply@github.com>2019-01-08 11:45:31 +0000
commitccd18caf1dd033885745e88e684e6152db6cd06e (patch)
tree28add0dce94943aa67ef89b301cfcc7b87597149
parentc024ada4ca5bc6a5db4bc8c2a1b60397434d9c3b (diff)
parent33da0f3d007ba583f35069495100c41c5930e931 (diff)
Merge pull request #135 from Gitoffthelawn/patch-7
Make toggle label congruent to improve UX
-rw-r--r--popup.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/popup.html b/popup.html
index 6edcf06..3f9f6c2 100644
--- a/popup.html
+++ b/popup.html
@@ -12,7 +12,7 @@
<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>