diff options
author | Einar Egilsson <einar@einaregilsson.com> | 2015-09-11 12:08:45 +0000 |
---|---|---|
committer | Einar Egilsson <einar@einaregilsson.com> | 2015-09-11 12:08:45 +0000 |
commit | 462ca78e5c63682c06f96dade70d193b9e1b68c1 (patch) | |
tree | b28a1b279ea523efc021856cd878f41972a0125a /popup.html | |
parent | 4c7ba5856ce3bf2976094e2c19d1f99054929360 (diff) |
Popup ready
Diffstat (limited to 'popup.html')
-rw-r--r-- | popup.html | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -7,8 +7,10 @@ <script src="js/angular.min.js"></script> <script src="js/popup.js"></script> </head> - <body > - <h1>Redirector</h1> - <button>Disable</button> + <body ng-app="popupApp" ng-controller="PopupCtrl"> + <h1><span>☈</span>edirector</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> </body> </html> |