diff --git a/archive/v0.1.1/installation.html b/archive/v0.1.1/installation.html index 6f059453..291cd4fb 100644 --- a/archive/v0.1.1/installation.html +++ b/archive/v0.1.1/installation.html @@ -62,12 +62,12 @@

Bower

Bower is a package manager for NodeJS. If you're using NodeJS already or planning on using Grunt to create a build system, you can use Bower to conveniently keep up-to-date with Mithril versions.

-

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

+

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

npm install -g bower

And you can download Mithril by typing this:

bower install mithril

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

-
<script src="bower_components/mithril/mithril.min.js"></script>
+
<script src="/bower_components/mithril/mithril.min.js"></script>
diff --git a/archive/v0.1.1/mithril.min.zip b/archive/v0.1.1/mithril.min.zip index f889aeb8..158e3da7 100644 Binary files a/archive/v0.1.1/mithril.min.zip and b/archive/v0.1.1/mithril.min.zip differ diff --git a/docs/installation.md b/docs/installation.md index 920753b9..82e5430e 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -42,7 +42,7 @@ Content delivery networks allow the library to be cached across different websit [Bower](http://http://bower.io) is a package manager for [NodeJS](http://nodejs.org/). If you're using NodeJS already or planning on using [Grunt](http://gruntjs.com/) to create a build system, you can use Bower to conveniently keep up-to-date with Mithril versions. -Assuming you have NodeJS installed, you can install bower by typing this in the command line: +Assuming you have NodeJS installed, you can install Bower by typing this in the command line: ``` npm install -g bower @@ -57,5 +57,5 @@ bower install mithril Then, to use Mithril, point a script tag to the downloaded file: ```markup - + ```