-
Notifications
You must be signed in to change notification settings - Fork 2
/
ng-prefs.xhtml
28 lines (24 loc) · 1.22 KB
/
ng-prefs.xhtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html SYSTEM "chrome://mousecontrol/locale/prefs.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" ng-app="mousecontrol_prefs">
<head>
<title>&mousecontrol.prefs.title;</title>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
<meta name="description" content="&mousecontrol.prefs.desc;" />
<link rel="shortcut icon" href="chrome://mousecontrol/content/resources/images/icon16.png" type="image/png" />
<link rel="stylesheet" type="text/css" media="screen" href="chrome://mousecontrol/content/resources/styles/ng-theme.css" />
<link rel="stylesheet" type="text/css" media="screen" href="chrome://mousecontrol/content/resources/styles/ng-prefs.css" />
<script src="chrome://mousecontrol/content/resources/scripts/angular.min.js"></script>
<script src="chrome://mousecontrol/content/resources/scripts/ng-prefs.js"></script>
<style>
/* styles that need localization */
</style>
</head>
<body ng-controller="BodyController as BC" ng-keypress="BC.hideModalIfEsc($event)">
<modal ng-class="{'modal-show':BC.modal.show}" />
<div id="main_wrap">
<header/>
<option-group ng-repeat="aGroupName in BC.options | groupBy:'groupName'" />
<config-wrap />
</div>
</body>
</html>