Skip to content

Commit

Permalink
fixed script tags
Browse files Browse the repository at this point in the history
  • Loading branch information
ntschutta committed Nov 27, 2011
1 parent 0c7847c commit 2bdffb9
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion labs/canvas_rings.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>HTML5 Feature Detection</title>
<script src="../javascript/modernizr-2.0.6.js"></script>
<script type="text/javascript">
<script>

</script>
</head>
Expand Down
2 changes: 1 addition & 1 deletion labs/detection.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>HTML5 Feature Detection</title>
<script type="text/javascript">
<script>

function check_offline() {
}
Expand Down
2 changes: 1 addition & 1 deletion labs/detection_modernizr.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>HTML5 Feature Detection</title>
<script src="../javascript/modernizr-2.0.6.js"></script>
<script type="text/javascript">
<script>

function check_offline() {
}
Expand Down
2 changes: 1 addition & 1 deletion labs_finished/canvas_rings.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>HTML5 Feature Detection</title>
<script src="../javascript/modernizr-2.0.6.js"></script>
<script type="text/javascript">
<script>
function draw() {
var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");
Expand Down
2 changes: 1 addition & 1 deletion labs_finished/detection.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>HTML5 Feature Detection</title>
<script type="text/javascript">
<script>

function check_offline() {
if(!!window.applicationCache) {
Expand Down
2 changes: 1 addition & 1 deletion labs_finished/detection_modernizr.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>HTML5 Feature Detection</title>
<script src="../javascript/modernizr-2.0.6.js"></script>
<script type="text/javascript">
<script>
function check_offline() {
if(Modernizr.applicationcache) {
show_results("offline supported!");
Expand Down
2 changes: 1 addition & 1 deletion labs_finished/localstorage_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<title>HTML5 Local Storage Support</title>
<script src="../javascript/modernizr-2.0.6.js"></script>
<script src="../javascript/jquery-1.6.2.js"></script>
<script type="application/javascript">
<script>
function storeInput() {
if (Modernizr.localstorage) {
localStorage.setItem("name", $("#name").val());
Expand Down

0 comments on commit 2bdffb9

Please sign in to comment.