diff --git a/docs/assets/css/docs.css b/docs/assets/css/docs.css index 29fdcf3f0..a4bd11b3e 100644 --- a/docs/assets/css/docs.css +++ b/docs/assets/css/docs.css @@ -312,7 +312,6 @@ img.large-bird { opacity: .1; } - /* Pretty Print -------------------------------------------------- */ pre.prettyprint { diff --git a/docs/assets/js/application.js b/docs/assets/js/application.js index d1c6751ea..e39a75474 100644 --- a/docs/assets/js/application.js +++ b/docs/assets/js/application.js @@ -48,15 +48,16 @@ $(document).ready(function(){ // POSITION STATIC TWIPSIES // ======================== - $(".twipsies a").each(function () { - $(this) - .twipsy({ - live: false - , placement: $(this).attr('title') - , trigger: 'manual' - , offset: 2 + $(window).load(function () { + $(".twipsies a").each(function () { + $(this) + .twipsy({ + live: false + , placement: $(this).attr('title') + , trigger: 'manual' + , offset: 2 + }) + .trigger('twipsy:show') }) - .trigger('twipsy:show') - }) - + }) }); diff --git a/docs/index.html b/docs/index.html index 771adabe7..c8e7df7a4 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1776,7 +1776,10 @@ Lorem ipsum dolar sit amet illo error ipsum verita
Install the less command line compiler with npm by running the following command:
+$ npm install lessc+
Once installed just run make from the root of your bootstrap directory and you're all set.
Additionally, if you have watchr installed, you may run make watch to have bootstrap automatically rebuilt every time you edit a file in the bootstrap lib (this isn't required, just a convenience method).
If you already have the less command line tool installed you can simply run the following command:
+$ lessc ./lib/bootstrap.less > bootstrap-1.3.0.css+
Be sure to include the --compress flag in that command if you're trying to save some bytes!