diff options
| author | Jacob Thornton <[email protected]> | 2012-03-08 11:39:00 -0800 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2012-03-08 11:39:00 -0800 |
| commit | bcef12dfcc8d7e0df03437589f22174042745d78 (patch) | |
| tree | a4195c17e6eac4d6982778c45be284df96452089 | |
| parent | 426feeef6a4cf251431c7a21a1c79b0477ef37a0 (diff) | |
| download | bootstrap-bcef12dfcc8d7e0df03437589f22174042745d78.tar.xz bootstrap-bcef12dfcc8d7e0df03437589f22174042745d78.zip | |
add version to min js
| -rw-r--r-- | Makefile | 5 | ||||
| -rw-r--r-- | docs/assets/bootstrap.zip | bin | 54874 -> 54977 bytes | |||
| -rw-r--r-- | docs/index.html | 2 |
3 files changed, 5 insertions, 2 deletions
@@ -36,7 +36,10 @@ bootstrap: lessc ${BOOTSTRAP_RESPONSIVE_LESS} > bootstrap/css/bootstrap-responsive.css lessc --compress ${BOOTSTRAP_RESPONSIVE_LESS} > bootstrap/css/bootstrap-responsive.min.css cat js/bootstrap-transition.js js/bootstrap-alert.js js/bootstrap-button.js js/bootstrap-carousel.js js/bootstrap-collapse.js js/bootstrap-dropdown.js js/bootstrap-modal.js js/bootstrap-tooltip.js js/bootstrap-popover.js js/bootstrap-scrollspy.js js/bootstrap-tab.js js/bootstrap-typeahead.js > bootstrap/js/bootstrap.js - uglifyjs -nc bootstrap/js/bootstrap.js > bootstrap/js/bootstrap.min.js + uglifyjs -nc bootstrap/js/bootstrap.js > bootstrap/js/bootstrap.min.tmp.js + echo "/**\n* Bootstrap.js by @fat & @mdo\n* Copyright 2012 Twitter, Inc.\n* http://www.apache.org/licenses/LICENSE-2.0.txt\n*/" > bootstrap/js/copyright.js + cat bootstrap/js/copyright.js bootstrap/js/bootstrap.min.tmp.js > bootstrap/js/bootstrap.min.js + rm bootstrap/js/copyright.js bootstrap/js/bootstrap.min.tmp.js # # MAKE FOR GH-PAGES 4 FAT & MDO ONLY (O_O ) diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip Binary files differindex c07368a2a..48e8324e3 100644 --- a/docs/assets/bootstrap.zip +++ b/docs/assets/bootstrap.zip diff --git a/docs/index.html b/docs/index.html index 4ecd5c12f..5041b8043 100644 --- a/docs/index.html +++ b/docs/index.html @@ -2,7 +2,7 @@ <html lang="en"> <head> <meta charset="utf-8"> - <title>Bootstrap, from Twitter</title> + <title>Bootstrap</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> |
