Skip to content

Commit

Permalink
Merge branch '2.0.3-wip' of github.com:twitter/bootstrap into 2.0.3-wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Apr 23, 2012
2 parents 419e50e + b8b1ffd commit f805a60
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 21 deletions.
9 changes: 5 additions & 4 deletions Makefile
Expand Up @@ -4,16 +4,17 @@ BOOTSTRAP_RESPONSIVE = ./docs/assets/css/bootstrap-responsive.css
BOOTSTRAP_RESPONSIVE_LESS = ./less/responsive.less
DATE=$(shell date +%I:%M%p)
CHECK=\033[32m✔\033[39m
HR=\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#


#
# BUILD DOCS
#

build:
@echo "\n##################################################"
@echo "\n${HR}"
@echo "Building Bootstrap..."
@echo "##################################################\n"
@echo "${HR}\n"
@jshint js/*.js --config js/.jshintrc
@jshint js/tests/unit/*.js --config js/.jshintrc
@echo "Running JSHint on javascript... ${CHECK} Done"
Expand All @@ -31,9 +32,9 @@ build:
@cat docs/assets/js/copyright.js docs/assets/js/bootstrap.min.tmp.js > docs/assets/js/bootstrap.min.js
@rm docs/assets/js/copyright.js docs/assets/js/bootstrap.min.tmp.js
@echo "Compiling and minifying javascript... ${CHECK} Done"
@echo "\n##################################################"
@echo "\n${HR}"
@echo "Bootstrap successfully built at ${DATE}."
@echo "##################################################\n"
@echo "${HR}\n"
@echo "Thanks for using Bootstrap,"
@echo "<3 @mdo and @fat\n"

Expand Down
6 changes: 3 additions & 3 deletions js/tests/phantom.js
Expand Up @@ -2,15 +2,15 @@
// Adapted from Modernizr

function waitFor(testFx, onReady, timeOutMillis) {
var maxtimeOutMillis = timeOutMillis ? timeOutMillis : 3001 //< Default Max Timout is 3s
var maxtimeOutMillis = timeOutMillis ? timeOutMillis : 5001 //< Default Max Timout is 5s
, start = new Date().getTime()
, condition = false
, interval = setInterval(function() {
, interval = setInterval(function () {
if ((new Date().getTime() - start < maxtimeOutMillis) && !condition) {
// If not time-out yet and condition not yet fulfilled
condition = (typeof(testFx) === "string" ? eval(testFx) : testFx()) //< defensive code
} else {
if(!condition) {
if (!condition) {
// If condition still not fulfilled (timeout but condition is 'false')
console.log("'waitFor()' timeout")
phantom.exit(1)
Expand Down
16 changes: 6 additions & 10 deletions js/tests/server.js
Expand Up @@ -4,15 +4,11 @@
*/

var connect = require('connect')
, args = process.argv.slice(2)
, fs = require('fs')
, folder = '/../../'
, port = '3000'
, http = require('http')
, fs = require('fs')
, app = connect()
.use(connect.static(__dirname + '/../../'));

var server = connect.createServer(
connect.static(__dirname + folder)
).listen(port)
http.createServer(app).listen(3000);

fs.writeFileSync(__dirname + '/pid.txt', process.pid, 'utf-8')

console.log("Server started on port %s in %s", port, folder)
fs.writeFileSync(__dirname + '/pid.txt', process.pid, 'utf-8')
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -17,9 +17,9 @@
}
]
, "devDependencies": {
"uglify-js": "*"
, "jshint": "*"
, "recess": "*"
, "connect": "*"
"uglify-js": "1.2.6"
, "jshint": "0.6.1"
, "recess": "1.0.3"
, "connect": "2.1.3"
}
}

0 comments on commit f805a60

Please sign in to comment.