diff --git a/archive/v0.1.3/installation.html b/archive/v0.1.3/installation.html index 1790116d..347cd311 100644 --- a/archive/v0.1.3/installation.html +++ b/archive/v0.1.3/installation.html @@ -82,9 +82,9 @@

Assuming you have NodeJS installed, you can install Bower by typing this in the command line:

npm install -g component

And you can download Mithril by typing this:

-
component install lhorie/mithril@gh-pages
+
component install lhorie/mithril

Then, to use Mithril, point a script tag to the downloaded file:

-
<script src="/components/lhorie/mithril/gh-pages/mithril.min.js"></script>
+
<script src="/components/lhorie/mithril/master/mithril.min.js"></script>
diff --git a/archive/v0.1.3/mithril.min.zip b/archive/v0.1.3/mithril.min.zip index 3067b3e6..8d5c9e6d 100644 Binary files a/archive/v0.1.3/mithril.min.zip and b/archive/v0.1.3/mithril.min.zip differ diff --git a/docs/installation.md b/docs/installation.md index b3f033c4..c7b1ae28 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -93,11 +93,11 @@ npm install -g component And you can download Mithril by typing this: ``` -component install lhorie/mithril@gh-pages +component install lhorie/mithril ``` Then, to use Mithril, point a script tag to the downloaded file: ```markup - + ```