-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
executable file
·31 lines (29 loc) · 895 Bytes
/
popup.html
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
29
30
31
<!DOCTYPE HTML>
<html lang="ja" ng-app ng-csp>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/angular-csp.css" type="text/css" />
<link rel="stylesheet" href="css/style.css" type="text/css" />
</head>
<body>
<div>
<label>Name:</label>
<input type="text" ng-model="yourName" placeholder="Enter a name here">
<hr>
<h1>Hello {{yourName}}!</h1>
<div>
<button id="clickme">click me</button>
</div>
</div>
<div ng-controller="HelloCtrl">
<ul>
<li ng-repeat="hello in hellos">
<span>{{hello.lang}}, {{hello.text}}</span>
</li>
</ul>
</div>
</body>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/angular.min.js"></script>
<script type="text/javascript" src="js/popup.js"></script>
</html>