Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/js.js
diff options
context:
space:
mode:
authorJacob Thornton <jacobthornton@gmail.com>2012-12-10 12:59:28 +0400
committerJacob Thornton <jacobthornton@gmail.com>2012-12-10 12:59:28 +0400
commit48227e1a68e086bda7ff21bc9a56412d4cd8399e (patch)
treed95ced91248aaf5a35abc4ac7a75e4e8f7199222 /lib/js.js
parent852a473a31e6e7a33c2372f579aeb0dc76b2b476 (diff)
branch -> tag
Diffstat (limited to 'lib/js.js')
-rw-r--r--lib/js.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/js.js b/lib/js.js
index 2c70b96..44373f5 100644
--- a/lib/js.js
+++ b/lib/js.js
@@ -22,6 +22,7 @@
var uglifyJS = require('uglify-js')
, path = require('path')
, https = require('https')
+ , TAG = 'v2.2.2'
, CACHE = {}
, FILES = [ "bootstrap-transition.js"
, "bootstrap-affix.js"
@@ -48,7 +49,7 @@ function cache() {
, options = {
host: 'raw.github.com'
, port: 443
- , path: path.join('/twitter/bootstrap/master/js/', filename)
+ , path: path.join('/twitter/bootstrap/', TAG, '/js/', filename)
, method: 'GET'
}