Navigation Menu

Skip to content

Commit

Permalink
Fixed the code in the readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Young committed Mar 7, 2010
1 parent 736733d commit 56825ad
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions README.textile
Expand Up @@ -75,23 +75,23 @@ Riot.run();
</pre> </pre>


<pre> <pre>
&lt;!DOCTYPE html&gt; <!DOCTYPE html>
&lt;html&gt; <html>
&lt;head&gt; <head>
&lt;title&gt;Riot&lt;/title&gt; <title>Riot</title>
&lt;style&gt; <style>
p.pass { color: green; font-weight: bold; margin: 0 } p.pass { color: green; font-weight: bold; margin: 0 }
p.fail { color: red; font-weight: bold; margin: 0 } p.fail { color: red; font-weight: bold; margin: 0 }
#test-results ul { margin-bottom: 1em } #test-results ul { margin-bottom: 1em }
&lt;/style&gt; </style>
&lt;script type=&quot;text/javascript&quot; src=&quot;riot.js&quot;&gt;&lt;/script&gt; <script type="text/javascript" src="riot.js"></script>
&lt;script type=&quot;text/javascript&quot; src=&quot;core_test.js&quot;&gt;&lt;/script&gt; <script type="text/javascript" src="core_test.js"></script>
&lt;script type=&quot;text/javascript&quot; src=&quot;oo_test.js&quot;&gt;&lt;/script&gt; <script type="text/javascript" src="oo_test.js"></script>
&lt;/head&gt; </head>
&lt;body&gt; <body>
&lt;div id=&quot;test-results&quot;&gt;&lt;/div&gt; <div id="test-results"></div>
&lt;/body&gt; </body>
&lt;/html&gt; </html>
</pre> </pre>


Note: Note:
Expand Down

0 comments on commit 56825ad

Please sign in to comment.