Skip to content

Commit

Permalink
Fix doctype
Browse files Browse the repository at this point in the history
  • Loading branch information
qistoph committed Apr 27, 2013
1 parent 76c742e commit 5ac12c2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<!doctype html/>
<!doctype html>
<html>
<head>
<title>WiFi QR-code - Javascript</title>

<!-- Facebook Meta Tags -->
<meta property="og:url" content="http://qistoph.github.io/WiFiQR/" />
<meta property="og:title" content="WiFi QR-code" />
<meta property="og:description" content="Share your WiFi easily with a QR-code" />
Expand Down Expand Up @@ -290,7 +291,7 @@
window.printQR = function(targetWin) {
var printWin = window.open('', '_blank', '');

printWin.document.write('<!doc'+'type html/><ht'+'ml><he'+'ad><title>WiFi: ' + $("#S").val() + '</title></he'+'ad><bo'+'dy>');
printWin.document.write('<!doc'+'type html><ht'+'ml><he'+'ad><title>WiFi: ' + $("#S").val() + '</title></he'+'ad><bo'+'dy>');
printWin.document.write('<div id="card">');
printWin.document.write('<div id="cardcontent">');
printWin.document.write('<div id="qrcode"></div>');
Expand Down

0 comments on commit 5ac12c2

Please sign in to comment.