use minified file in guide to match installation
This commit is contained in:
parent
b559118832
commit
6f6ea4ce0d
3 changed files with 4 additions and 4 deletions
|
|
@ -57,7 +57,7 @@
|
||||||
<p>Once you have a <a href="installation.html">copy of Mithril</a>, getting started is surprisingly boilerplate-free:</p>
|
<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"><!doctype html>
|
<pre><code class="lang-markup"><!doctype html>
|
||||||
<title>Todo app</title>
|
<title>Todo app</title>
|
||||||
<script src="mithril.js"></script>
|
<script src="mithril.min.js"></script>
|
||||||
<script>
|
<script>
|
||||||
//app goes here
|
//app goes here
|
||||||
</script></code></pre>
|
</script></code></pre>
|
||||||
|
|
@ -304,7 +304,7 @@ m.module(document, todo);</code></pre>
|
||||||
<h3 id="summary">Summary</h3>
|
<h3 id="summary">Summary</h3>
|
||||||
<p>Here's the application code in its entirety:</p>
|
<p>Here's the application code in its entirety:</p>
|
||||||
<pre><code class="lang-markup"><!doctype html>
|
<pre><code class="lang-markup"><!doctype html>
|
||||||
<script src="mithril.js"></script>
|
<script src="mithril.min.js"></script>
|
||||||
<script>
|
<script>
|
||||||
//this application only has one module: todo
|
//this application only has one module: todo
|
||||||
var todo = {};
|
var todo = {};
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -21,7 +21,7 @@ Once you have a [copy of Mithril](installation.md), getting started is surprisin
|
||||||
```markup
|
```markup
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<title>Todo app</title>
|
<title>Todo app</title>
|
||||||
<script src="mithril.js"></script>
|
<script src="mithril.min.js"></script>
|
||||||
<script>
|
<script>
|
||||||
//app goes here
|
//app goes here
|
||||||
</script>
|
</script>
|
||||||
|
|
@ -408,7 +408,7 @@ Here's the application code in its entirety:
|
||||||
|
|
||||||
```markup
|
```markup
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<script src="mithril.js"></script>
|
<script src="mithril.min.js"></script>
|
||||||
<script>
|
<script>
|
||||||
//this application only has one module: todo
|
//this application only has one module: todo
|
||||||
var todo = {};
|
var todo = {};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue