This repository was archived by the owner on Mar 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTabletDevices.html
More file actions
47 lines (47 loc) · 1.48 KB
/
TabletDevices.html
File metadata and controls
47 lines (47 loc) · 1.48 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Testify</title>
<link href="/app/css/reset.css" rel="stylesheet" type="text/css">
<link href="/app/css/styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="content-wrapper">
<div id="loading"></div>
<h1><a href="/">Testify</a></h1>
<div id="top-menu">
<ul>
<li><a href="/MobileDevices">Mobiles</a></li>
<li><a href="/TabletDevices">Tablets</a></li>
<li><a href="/DesktopDevices">Desktops</a></li>
</ul>
</div>
<div class="apple-devices">
<div class="device-wrapper">
<h2>iPad 1 / 2</h2>
<iframe src="http://localhost:8080/" width="768" height="1024"></iframe>
</div>
<div class="device-wrapper">
<h2>iPad 1 / 2</h2>
<iframe src="http://localhost:8080/" width="1024" height="768"></iframe>
</div>
</div>
<div class="android-devices">
<div class="device-wrapper">
<h2>Nexus 7(II)</h2>
<iframe src="http://localhost:8080/" width="600" height="960"></iframe>
</div>
<div class="device-wrapper">
<h2>Nexus 7(II)</h2>
<iframe src="http://localhost:8080/" width="960" height="600"></iframe>
</div>
</div>
</div>
<script src="/app/js/lib/jquery/jquery-1.11.2.min.js"></script>
<script>
$(window).load(function() {
$('#loading').hide();
});
</script>
</body>
</html>