Browse Source

Fix for IE7 and removal of analytics

pull/20/merge
Zach Wise 13 years ago
parent
commit
b2049b9a5e
  1. 19
      examples/kitchen-sink/index.html
  2. 1
      examples/template_googlespreadsheet/index.html
  3. 3
      examples/template_html/index.html
  4. 5
      examples/template_json/index.html

19
examples/kitchen-sink/index.html

@ -6,10 +6,6 @@
<meta name="description" content="Template Description"> <meta name="description" content="Template Description">
<meta name="author" content="Zach Wise"> <meta name="author" content="Zach Wise">
<!-- Set the viewport for mobile devices -->
<!-- <meta name="viewport" content="width=device-width,maximum-scale=1.0" /> -->
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=no;"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<!-- Le HTML5 shim, for IE6-8 support of HTML elements --> <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]> <!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
@ -24,7 +20,7 @@
<script type="text/javascript" src="../../timeline-min.js"></script> <script type="text/javascript" src="../../timeline-min.js"></script>
<script> <script>
$(document).ready(function() { $(document).ready(function() {
timeline = new VMM.Timeline(); var timeline = new VMM.Timeline();
timeline.init("data.json"); timeline.init("data.json");
}); });
</script> </script>
@ -34,20 +30,7 @@
<link rel="apple-touch-icon" href="../../gfx/favicons/apple-touch-icon.png"> <link rel="apple-touch-icon" href="../../gfx/favicons/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="../../gfx/favicons/apple-touch-icon-72x72.png"> <link rel="apple-touch-icon" sizes="72x72" href="../../gfx/favicons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="../../gfx/favicons/apple-touch-icon-114x114.png"> <link rel="apple-touch-icon" sizes="114x114" href="../../gfx/favicons/apple-touch-icon-114x114.png">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-537357-18']);
_gaq.push(['_setDomainName', 'verite.co']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head> </head>
<body> <body>

1
examples/template_googlespreadsheet/index.html

@ -4,7 +4,6 @@
<meta charset="utf-8"> <meta charset="utf-8">
<title>Timeline Google Spreadsheet Template</title> <title>Timeline Google Spreadsheet Template</title>
<meta name="description" content="Template Description"> <meta name="description" content="Template Description">
<meta name="author" content="Zach Wise">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements --> <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]> <!--[if lt IE 9]>

3
examples/template_html/index.html

@ -4,10 +4,7 @@
<meta charset="utf-8"> <meta charset="utf-8">
<title>Timeline</title> <title>Timeline</title>
<meta name="description" content="Template Description"> <meta name="description" content="Template Description">
<meta name="author" content="Zach Wise">
<meta name="apple-mobile-web-app-capable" content="yes"/>
<!-- Le HTML5 shim, for IE6-8 support of HTML elements --> <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]> <!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>

5
examples/template_json/index.html

@ -4,12 +4,7 @@
<meta charset="utf-8"> <meta charset="utf-8">
<title>Timeline JSON Template</title> <title>Timeline JSON Template</title>
<meta name="description" content="Template Description"> <meta name="description" content="Template Description">
<meta name="author" content="Zach Wise">
<!-- Set the viewport for mobile devices -->
<!-- <meta name="viewport" content="width=device-width,maximum-scale=1.0" /> -->
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=no;"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<!-- Le HTML5 shim, for IE6-8 support of HTML elements --> <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]> <!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>

Loading…
Cancel
Save