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/css.js')
-rw-r--r--lib/css.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/css.js b/lib/css.js
index fee6661..0fe3617 100644
--- a/lib/css.js
+++ b/lib/css.js
@@ -1,8 +1,8 @@
// ========================================================================
// bootstrap-server v1.0.0
-// http://twitter.github.com/bootstrap
+// http://twbs.github.com/bootstrap
// ========================================================================
-// Copyright 2012 Twitter, Inc.
+// Copyright 2013 Twitter, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -24,7 +24,7 @@ var path = require('path')
, less = require('less')
, CACHE = {}
, TAG = "v2.3.1"
- , CW = "/*!\n * Bootstrap v2.3.1\n *\n * Copyright 2012 Twitter, Inc\n * Licensed under the Apache License v2.0\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Designed and built with all the love in the world @twitter by @mdo and @fat.\n */\n"
+ , CW = "/*!\n * Bootstrap v2.3.1\n *\n * Copyright 2013 Twitter, Inc\n * Licensed under the Apache License v2.0\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Designed and built with all the love in the world by @mdo and @fat.\n */\n"
, ERROR = "A less error occured trying to build your bundle. You've likely entered an invalid input into the less variable field. Check your syntax and try again!\n\n thanks!\n\n"
, FILES = [ // CSS Reset
"reset.less"
@@ -99,7 +99,7 @@ function cache(callback) {
, options = {
host: 'raw.github.com'
, port: 443
- , path: path.join('/twitter/bootstrap/', TAG, '/less/', filename)
+ , path: path.join('/twbs/bootstrap/', TAG, '/less/', filename)
, method: 'GET'
}