-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
38 lines (30 loc) · 1.47 KB
/
index.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Atendimento Online - brTalk</title>
<link href="favicon.ico" rel="shortcut icon" />
<script type="text/javascript" src="js/jquery-1.11.3.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#atendimento').click(function(){
var width = 500;
var height = 540;
var left = (screen.width - width) / 2;
var top = ((screen.height - height) / 2) - 30;
window.open('cliente/index.php', 'at', 'height=' +height+ ', width=' +width+ ',status=no, toolbar=no, resizable=0, scrollbars=no, minimizable=no, left=' +left+ ', top=' +top);
});
});
</script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<a href="atendente/">Atendente</a><br />
<a href="javascript:void(0)" id="atendimento">Cliente</a>
</body>
</html>