-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtu_lightbox.html
45 lines (44 loc) · 1.88 KB
/
tu_lightbox.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="stylesheets/fonts.css" />
<link rel="stylesheet" type="text/css" href="stylesheets/jquery.jscrollpane.css" />
<link rel="stylesheet" type="text/css" href="stylesheets/fullpage_lightbox.css" />
<link rel="stylesheet" type="text/css" href="stylesheets/tc_lightbox.css" />
<link rel="stylesheet" type="text/css" href="stylesheets/theme.css" />
<script type="text/javascript" src="javascripts/jquery-2.1.0.min.js"></script>
<script type="text/javascript" src="javascripts/jquery.jscrollpane.min.js"></script>
<script type="text/javascript" src="javascripts/jquery.mousewheel.js"></script>
</head>
<body>
<!-- <div id="xBtn" onclick="closeLightbox();"></div> -->
<div id="lightbox_wrapper">
<div id="lightbox_inner">
<center id="center">
<h2 class="cHeader first">Terms of Use</h2>
<hr>
</center>
<p class="cParagraph">Usage</p>
<p class="cParagraph">THESE TERMS OF USE MAY BE CHANGED AT ANY TIME, WITHOUT PRIOR NOTICE TO ANY VISITOR</p>
<br/><br/><br/><br/>
<!--
<h3 class="cSubHeader">1.Item 1</h3>
<p class="cParagraph">The PSD only had partial data...not the entire T&C. Could not find the asset in the shared Google Folder.</p>
-->
</div>
</div>
<script>
function applyFancyboxCSS(){
$(".fancybox-iframe", window.parent.document).attr("scrolling","no");
$(".fancybox-iframe", window.parent.document).prop("scrolling","no");
if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ //test for MSIE x.x;
$(".fancybox-iframe", window.parent.document)[0].contentWindow.document.body.scroll="no";
}
$(".fancybox-iframe", window.parent.document).addClass("fpLightboxIframe");
}
$(document).ready(function(){
$('#lightbox_wrapper').jScrollPane({showArrows: true, autoReinitialise:true});
applyFancyboxCSS();
});
</script>
</body>