forked from einaregilsson/Redirector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
19 lines (18 loc) · 793 Bytes
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<title>NetJournal</title>
<link rel="stylesheet" href="css/popup.css" />
<meta charset="UTF-8">
<script src="js/angular.min.js"></script>
<script src="js/popup.js"></script>
</head>
<body ng-app="popupApp" ng-controller="PopupCtrl">
<h1>NetJournal</h1>
<div class="disabled"><span ng-show="disabled">Disabled</span></div>
<button ng-click="toggleDisabled()">{{disabled ? 'Enable' : 'Disable'}}</button>
<button ng-click="openBlockJournalSettings()">Edit Journal Settings</button>
<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>