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:
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'
}