-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
68 lines (57 loc) · 2.62 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
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
<!DOCTYPE html>
<html>
<head>
<title>Agile Training Home</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<style type="text/css">
body {
background: #eee;
}
</style>
</head>
<body>
<iframe id="welcome" width="400" height="300" frameBorder="0" marginheight="0" marginwidth="0" src="welcome/">
Unsupported browser.
</iframe>
<iframe id="agile-movement" width="400" height="300" frameBorder="0" marginheight="0" marginwidth="0" src="agile-movement/">
Unsupported browser.
</iframe>
<iframe id="lean-kanban" width="400" height="300" frameBorder="0" marginheight="0" marginwidth="0" src="lean-kanban/">
Unsupported browser.
</iframe>
<iframe id="scrum" width="400" height="300" frameBorder="0" marginheight="0" marginwidth="0" src="scrum/">
Unsupported browser.
</iframe>
<iframe id="extreme-programming" width="400" height="300" frameBorder="0" marginheight="0" marginwidth="0" src="extreme-programming/">
Unsupported browser.
</iframe>
<iframe id="the-big-picture" width="400" height="300" frameBorder="0" marginheight="0" marginwidth="0" src="the-big-picture/">
Unsupported browser.
</iframe>
<iframe id="personal-leadership" width="400" height="300" frameBorder="0" marginheight="0" marginwidth="0" src="personal-leadership/">
Unsupported browser.
</iframe>
<iframe id="iteration-report" width="400" height="300" frameBorder="0" marginheight="0" marginwidth="0" src="iteration-report/">
Unsupported browser.
</iframe>
<iframe id="thank-you" width="400" height="300" frameBorder="0" marginheight="0" marginwidth="0" src="thank-you/">
Unsupported browser.
</iframe>
<a href="https://github.com/mercer/agile-training"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://camo.githubusercontent.com/8b6b8ccc6da3aa5722903da7b58eb5ab1081adee/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f6c6566745f6f72616e67655f6666373630302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_left_orange_ff7600.png"></a>
<script type="text/javascript">
$(document).ready( function() {
function registerClickEvent(index) {
var id = $(this).attr('id');
$('#' + id).load(function(){
var iframe = $('#' + id).contents();
iframe.find('.slides').click(function(){
window.location.href = window.location.href + id;
});
iframe.find('body').css('cursor', 'pointer');
});
}
$('iframe').each(registerClickEvent);
});
</script>
</body>
</html>