use minified file in guide to match installation

This commit is contained in:
Leo Horie 2014-09-28 14:38:29 -04:00
parent b559118832
commit 6f6ea4ce0d
3 changed files with 4 additions and 4 deletions

View file

@ -57,7 +57,7 @@
<p>Once you have a <a href="installation.html">copy of Mithril</a>, getting started is surprisingly boilerplate-free:</p>
<pre><code class="lang-markup">&lt;!doctype html&gt;
&lt;title&gt;Todo app&lt;/title&gt;
&lt;script src=&quot;mithril.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;mithril.min.js&quot;&gt;&lt;/script&gt;
&lt;script&gt;
//app goes here
&lt;/script&gt;</code></pre>
@ -304,7 +304,7 @@ m.module(document, todo);</code></pre>
<h3 id="summary">Summary</h3>
<p>Here&#39;s the application code in its entirety:</p>
<pre><code class="lang-markup">&lt;!doctype html&gt;
&lt;script src=&quot;mithril.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;mithril.min.js&quot;&gt;&lt;/script&gt;
&lt;script&gt;
//this application only has one module: todo
var todo = {};

Binary file not shown.

View file

@ -21,7 +21,7 @@ Once you have a [copy of Mithril](installation.md), getting started is surprisin
```markup
<!doctype html>
<title>Todo app</title>
<script src="mithril.js"></script>
<script src="mithril.min.js"></script>
<script>
//app goes here
</script>
@ -408,7 +408,7 @@ Here's the application code in its entirety:
```markup
<!doctype html>
<script src="mithril.js"></script>
<script src="mithril.min.js"></script>
<script>
//this application only has one module: todo
var todo = {};