-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
popup.html
33 lines (33 loc) · 1.48 KB
/
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
32
33
<!DOCTYPE html>
<html ng-app="SIPClient">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="css/angular-csp.css">
<link rel="stylesheet" type="text/css" href="css/ui-bootstrap-csp.css">
<link rel="stylesheet" type="text/css" href="css/popup.css">
<title>Chrome SIP Client</title>
</head>
<body ng-controller="SIPClientCtrl" class="container" style="min-width: 250px;">
<div class="row">
<uib-tabset>
<uib-tab ng-repeat="sipCall in calls">
<uib-tab-heading><i class="fa {{ stateIcon(sipCall) }}"></i> <i class="fa fa-phone"></i></uib-tab-heading>
<ng-include src="'partials/call-ui.html'"></ng-include>
</uib-tab>
<uib-tab>
<uib-tab-heading><i class="fa fa-plus"></i> <i class="fa fa-phone"></i></uib-tab-heading>
<ng-include src="'partials/session-ui.html'"></ng-include>
</uib-tab>
</uib-tabset>
</div>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/angular.js"></script>
<script type="text/javascript" src="js/ui-bootstrap.js"></script>
<script type="text/javascript" src="js/ui-bootstrap-tpls.js"></script>
<script type="text/javascript" src="js/popup.js"></script>
</body>
</html>