-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
executable file
·78 lines (67 loc) · 3.27 KB
/
demo.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
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/demo.css">
<script src="js/performance_now_polyfill.js"></script>
<script src="js/node_insertion_detection.js"></script>
</head>
<body>
<header>
<button id="btn-insert-at-once">Insert AtOnce</button>
<button id="btn-insert-looping">Insert Looping</button>
<button id="btn-insert-at-once-no-css">Insert AtOnce no css</button>
<button id="btn-insert-looping-no-css">Insert Looping No css</button>
</header>
<div id="viewport">
<div class="app-header">
<div class="header">
<div class="primary-actions">
<button class="button back left"><span class="btn_icon_back_25px button-icon"></span></button>
</div>
<div class="titles">
<span class="title">Always Share Help</span>
</div>
<div class="secondary-actions">
</div>
</div>
</div>
<div id="app-page">
<div id="simple">
<div class="content">
<div>
<div class="instruction">
<p class="instruction-info">Always Share lets you automatically share your trips with a trusted member of
your Contact List. By checking this option, the contact will receive email itinerary updates on any active
trips already in your account as well as any new trips you add in the future.</p>
<p class="instruction-info">Always Share contacts do not automatically receive flight updates.</p>
<p class="instruction-info">You can turn off Always Share at any time.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer-container" data-load-timing="footer">
<footer class="wrapper">
<h3>footer</h3>
</footer>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.0.min.js"><\/script>')</script>
<script src="js/demo.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-XXXXX-X');ga('send','pageview');
</script>
</body>
</html>