Browse Source

Fixed html issue with `<html>` tag not closing after the body

TALFancyBox v2.25
Zach Wise 12 years ago
parent
commit
6af4ee3be2
  1. 6
      examples/example_googlespreadsheet.html
  2. 6
      examples/example_json.html
  3. 6
      examples/example_jsonp.html
  4. 6
      examples/example_storify.html
  5. 8
      source/jade/example_googlespreadsheet.jade
  6. 8
      source/jade/example_json.jade
  7. 8
      source/jade/example_jsonp.jade
  8. 8
      source/jade/example_storify.jade
  9. 2
      source/jade/index.jade
  10. 7
      source/jade/sections/example-head.jade
  11. 8
      source/jade/tests/test_extra_html.jade
  12. 8
      source/jade/tests/test_googlespreadsheet.jade
  13. 8
      source/jade/tests/test_googlespreadsheet_bc_era_ages_epoch.jade
  14. 8
      source/jade/tests/test_googlespreadsheet_biblical_ad.jade
  15. 8
      source/jade/tests/test_googlespreadsheet_minutes.jade
  16. 8
      source/jade/tests/test_iframe_640.jade
  17. 8
      source/jade/tests/test_jsonp.jade
  18. 8
      source/jade/tests/test_utc_firefox.jade
  19. 6
      tests/test_extra_html.html
  20. 6
      tests/test_googlespreadsheet.html
  21. 6
      tests/test_googlespreadsheet_bc_era_ages_epoch.html
  22. 6
      tests/test_googlespreadsheet_biblical_ad.html
  23. 6
      tests/test_googlespreadsheet_minutes.html
  24. 6
      tests/test_iframe_640.html
  25. 6
      tests/test_jsonp.html
  26. 6
      tests/test_utc_firefox.html

6
examples/example_googlespreadsheet.html

@ -31,8 +31,7 @@
<!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
</html>
<body>
<body>
<!-- BEGIN Timeline Embed -->
<div id="timeline-embed"></div>
<script type="text/javascript">
@ -44,4 +43,5 @@
</script>
<script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
<!-- END Timeline Embed-->
</body>
</body>
</html>

6
examples/example_json.html

@ -31,8 +31,7 @@
<!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
</html>
<body>
<body>
<!-- BEGIN Timeline Embed -->
<div id="timeline-embed"></div>
<script type="text/javascript">
@ -44,4 +43,5 @@
</script>
<script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
<!-- END Timeline Embed-->
</body>
</body>
</html>

6
examples/example_jsonp.html

@ -31,8 +31,7 @@
<!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
</html>
<body>
<body>
<!-- BEGIN Timeline Embed -->
<div id="timeline-embed"></div>
<script type="text/javascript">
@ -44,4 +43,5 @@
</script>
<script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
<!-- END Timeline Embed-->
</body>
</body>
</html>

6
examples/example_storify.html

@ -31,8 +31,7 @@
<!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
</html>
<body>
<body>
<!-- BEGIN Timeline Embed -->
<div id="timeline-embed"></div>
<script type="text/javascript">
@ -44,4 +43,5 @@
</script>
<script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
<!-- END Timeline Embed-->
</body>
</body>
</html>

8
source/jade/example_googlespreadsheet.jade

@ -1,4 +1,6 @@
include includes/mixins
include sections/example-head
body
!!! 5
html(lang="en")
include includes/mixins
include sections/example-head
body
mixin timeline-embed('https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadHdKcHlHcTB5bzhvbF9iTWwyMmJHdkE&output=html')

8
source/jade/example_json.jade

@ -1,4 +1,6 @@
include includes/mixins
include sections/example-head
body
!!! 5
html(lang="en")
include includes/mixins
include sections/example-head
body
mixin timeline-embed('example_json.json')

8
source/jade/example_jsonp.jade

@ -1,4 +1,6 @@
include includes/mixins
include sections/example-head
body
!!! 5
html(lang="en")
include includes/mixins
include sections/example-head
body
mixin timeline-embed('example_jsonp.jsonp')

8
source/jade/example_storify.jade

@ -1,4 +1,6 @@
include includes/mixins
include sections/example-head
body
!!! 5
html(lang="en")
include includes/mixins
include sections/example-head
body
mixin timeline-embed('http://storify.com/zachwise/test')

2
source/jade/index.jade

@ -20,7 +20,7 @@ html(lang="en")
//if lt IE 9
script(src='http://html5shim.googlecode.com/svn/trunk/html5.js')
body
body
// BEGIN Timeline Embed
div#timeline-embed
script(type='text/javascript', src='js/storyjs-embed-cdn.js?v222')

7
source/jade/sections/example-head.jade

@ -1,7 +1,6 @@
!!! 5
html(lang="en")
include ../includes/ascii
head
include ../includes/ascii
head
title Timeline JS Example
meta(charset='utf-8')
meta(name='description', content='TimelineJS example')

8
source/jade/tests/test_extra_html.jade

@ -1,4 +1,6 @@
include ../includes/mixins
include ../sections/example-head
body
!!! 5
html(lang="en")
include ../includes/mixins
include ../sections/example-head
body
mixin timeline-embed-debug('test_extra_html.json')

8
source/jade/tests/test_googlespreadsheet.jade

@ -1,4 +1,6 @@
include ../includes/mixins
include ../sections/example-head
body
!!! 5
html(lang="en")
include ../includes/mixins
include ../sections/example-head
body
mixin timeline-embed-debug('https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadFYzRjJPUGktY0NkWXFUWkVIZDNGRHc&output=html')

8
source/jade/tests/test_googlespreadsheet_bc_era_ages_epoch.jade

@ -1,4 +1,6 @@
include ../includes/mixins
include ../sections/example-head
body
!!! 5
html(lang="en")
include ../includes/mixins
include ../sections/example-head
body
mixin timeline-embed-debug('https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadHlWbUYwenBTV1hyUGRidU85MnEzQmc&output=html')

8
source/jade/tests/test_googlespreadsheet_biblical_ad.jade

@ -1,4 +1,6 @@
include ../includes/mixins
include ../sections/example-head
body
!!! 5
html(lang="en")
include ../includes/mixins
include ../sections/example-head
body
mixin timeline-embed-debug('https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadENlSWZ0Ml9CUXRMVTJGbHZ5UjhDblE&output=html')

8
source/jade/tests/test_googlespreadsheet_minutes.jade

@ -1,4 +1,6 @@
include ../includes/mixins
include ../sections/example-head
body
!!! 5
html(lang="en")
include ../includes/mixins
include ../sections/example-head
body
mixin timeline-embed-debug('https://docs.google.com/spreadsheet/pub?key=0Agl_Dv6iEbDadFBfbkE1Qk42RTFDcjRDdnFndk9DOFE&output=html')

8
source/jade/tests/test_iframe_640.jade

@ -1,5 +1,7 @@
include ../includes/mixins
include ../sections/example-head
body
!!! 5
html(lang="en")
include ../includes/mixins
include ../sections/example-head
body
div(style='width:640px;')
<iframe src="../compiled/index.html?source=0Agl_Dv6iEbDadHdKcHlHcTB5bzhvbF9iTWwyMmJHdkE&font=Bevan-PotanoSans&maptype=toner&debug=true&lang=en&height=650" width='100%' height='650' frameborder='0'></iframe>

8
source/jade/tests/test_jsonp.jade

@ -1,4 +1,6 @@
include ../includes/mixins
include ../sections/example-head
body
!!! 5
html(lang="en")
include ../includes/mixins
include ../sections/example-head
body
mixin timeline-embed-debug('example_jsonp.jsonp')

8
source/jade/tests/test_utc_firefox.jade

@ -1,4 +1,6 @@
include ../includes/mixins
include ../sections/example-head
body
!!! 5
html(lang="en")
include ../includes/mixins
include ../sections/example-head
body
mixin timeline-embed-debug('test_utc_firefox.json')

6
tests/test_extra_html.html

@ -31,8 +31,7 @@
<!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
</html>
<body>
<body>
<!-- BEGIN Timeline Embed -->
<div id="timeline-embed"></div>
<script type="text/javascript">
@ -45,4 +44,5 @@
</script>
<script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
<!-- END Timeline Embed-->
</body>
</body>
</html>

6
tests/test_googlespreadsheet.html

@ -31,8 +31,7 @@
<!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
</html>
<body>
<body>
<!-- BEGIN Timeline Embed -->
<div id="timeline-embed"></div>
<script type="text/javascript">
@ -45,4 +44,5 @@
</script>
<script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
<!-- END Timeline Embed-->
</body>
</body>
</html>

6
tests/test_googlespreadsheet_bc_era_ages_epoch.html

@ -31,8 +31,7 @@
<!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
</html>
<body>
<body>
<!-- BEGIN Timeline Embed -->
<div id="timeline-embed"></div>
<script type="text/javascript">
@ -45,4 +44,5 @@
</script>
<script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
<!-- END Timeline Embed-->
</body>
</body>
</html>

6
tests/test_googlespreadsheet_biblical_ad.html

@ -31,8 +31,7 @@
<!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
</html>
<body>
<body>
<!-- BEGIN Timeline Embed -->
<div id="timeline-embed"></div>
<script type="text/javascript">
@ -45,4 +44,5 @@
</script>
<script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
<!-- END Timeline Embed-->
</body>
</body>
</html>

6
tests/test_googlespreadsheet_minutes.html

@ -31,8 +31,7 @@
<!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
</html>
<body>
<body>
<!-- BEGIN Timeline Embed -->
<div id="timeline-embed"></div>
<script type="text/javascript">
@ -45,4 +44,5 @@
</script>
<script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
<!-- END Timeline Embed-->
</body>
</body>
</html>

6
tests/test_iframe_640.html

@ -31,7 +31,7 @@
<!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
</html>
<body>
<body>
<div style="width:640px;"><iframe src="../compiled/index.html?source=0Agl_Dv6iEbDadHdKcHlHcTB5bzhvbF9iTWwyMmJHdkE&font=Bevan-PotanoSans&maptype=toner&debug=true&lang=en&height=650" width='100%' height='650' frameborder='0'></iframe></div>
</body>
</body>
</html>

6
tests/test_jsonp.html

@ -31,8 +31,7 @@
<!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
</html>
<body>
<body>
<!-- BEGIN Timeline Embed -->
<div id="timeline-embed"></div>
<script type="text/javascript">
@ -45,4 +44,5 @@
</script>
<script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
<!-- END Timeline Embed-->
</body>
</body>
</html>

6
tests/test_utc_firefox.html

@ -31,8 +31,7 @@
<!-- HTML5 shim, for IE6-8 support of HTML elements--><!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
</head>
</html>
<body>
<body>
<!-- BEGIN Timeline Embed -->
<div id="timeline-embed"></div>
<script type="text/javascript">
@ -45,4 +44,5 @@
</script>
<script type="text/javascript" src="../compiled/js/storyjs-embed.js"></script>
<!-- END Timeline Embed-->
</body>
</body>
</html>
Loading…
Cancel
Save