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
diff options
context:
space:
mode:
Diffstat (limited to 'lib/img.js')
-rw-r--r--lib/img.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/img.js b/lib/img.js
index fe1a606..828ac4d 100644
--- a/lib/img.js
+++ b/lib/img.js
@@ -21,6 +21,7 @@
var path = require('path')
, https = require('https')
+ , TAG = 'v2.2.2'
, CACHE = {}
, FILES = [ 'glyphicons-halflings.png'
, 'glyphicons-halflings-white.png' ]
@@ -37,7 +38,7 @@ function cache(callback) {
, options = {
host: 'raw.github.com'
, port: 443
- , path: path.join('/twitter/bootstrap/master/img/', filename)
+ , path: path.join('/twitter/bootstrap', TAG, 'img', filename)
, method: 'GET'
}