Skip to content

Commit

Permalink
Add utf-8 encoding to html templates
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtajina committed May 18, 2012
1 parent 6d041f4 commit 0d52522
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion static/client.html
@@ -1,4 +1,4 @@
<!doctype html>
<!DOCTYPE html>
<!--
The entry point for client. This file is loaded just once when the client is captured.
It contains socket.io and all the communication logic.
Expand All @@ -8,6 +8,7 @@
<title>Testacular</title>
<!-- TOOD(vojta): create simple favicon and cache it -->
<link href="data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQEAYAAABPYyMiAAAABmJLR0T///////8JWPfcAAAACXBIWXMAAABIAAAASABGyWs+AAAAF0lEQVRIx2NgGAWjYBSMglEwCkbBSAcACBAAAeaR9cIAAAAASUVORK5CYII=" rel="icon" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<h1>Testacular - <span id="status">starting</span></h1>
Expand Down
3 changes: 2 additions & 1 deletion static/context.html
@@ -1,4 +1,4 @@
<!doctype html>
<!DOCTYPE html>
<!--
This is the execution context.
Loaded within the iframe.
Expand All @@ -7,6 +7,7 @@
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/javascript">
window.__testacular__ = window.parent.testacular;

Expand Down

0 comments on commit 0d52522

Please sign in to comment.