-
Notifications
You must be signed in to change notification settings - Fork 13
/
tabs.html
95 lines (91 loc) · 2.69 KB
/
tabs.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!--
Copyright 2013, BroadSoft, Inc.
Licensed under the Apache License,Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "ASIS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" href="jquery-ui.css" />
<style>
.ui-autocomplete{
max-height: 100px;
width: 80px;
overflow-y: scroll;
overflow-x: hidden;
}
</style>
</head>
<body>
<div id="name"></div>
<div id="signout_link_tabs">
<div id="signout">
<a href="#" tabindex="-1">sign out</a>
</div>
</div>
<div id="tabs">
<ul>
<li><a href="#dialer"><span><img
src="images/call.png" title="Call"></span></a></li>
<li><a href="#history"><span><img
src="images/history.png" title="History"></span></a></li>
<li><a href="#preferences"><span><img
src="images/preferences.png" title="Preferences"></span></a></li>
</ul>
<div id="dialer">
<div class="ui-widget">
<input id="destination" placeholder="Search and Dial" />
</div>
<div class="ui-widget">
<table id="calls">
</table>
</div>
</div>
<div id="history">
<div id="calllogs">
<table id="calllogentries">
</table>
</div>
</div>
<div id="preferences">
<div id="clicktodial">
<input id="clicktodialbox" type="checkbox" checked /> Enable
Click to Dial
</div>
<br />
<div id="notifications">
<input id="notificationsbox" type="checkbox" checked /> Enable
notifications
</div>
<div id="texttospeech">
<input id="texttospeechbox" type="checkbox" checked /> Enable
text to speech
</div>
</div>
</div>
<div id="toolbar">
<img id="robutton" src="images/remoteoffice_disabled.png" title="Remote Office" />
<img id="cfabutton" src="images/callforward_disabled.png" title="Call Forwarding Always" />
<img id="dndbutton" src="images/dnd_disabled.png" title="Do Not Disturb" />
</div>
<div id="whitespace_below_toolbar"></div>
<div id="about_link_tabs">
<a href="#" tabindex="-1">about</a>
</div>
</body>
<script src="jquery.js"></script>
<script src="jquery-ui.js"></script>
<script src="jquery.base64.js"></script>
<script src="xsiactions.js"></script>
<script type="text/javascript" src="auth.js"></script>
<script type="text/javascript" src="log.js"></script>
<script src="dotabs.js"></script>
</html>