Skip to content

Commit eb24718

Browse files
committed
Merge pull request #7111 from twitter/2.3.1-wip
2.3.1 wip
2 parents 16111a5 + 6b2a010 commit eb24718

40 files changed

+117
-66
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 2.3.1 (February 28, 2013)
2+
3+
Patch release for @fat's n00bery
4+
5+
- fix missing event type in dropdown
6+
- fix delegated data-attrs for popover/tooltip
7+
- make carousel actually pause when you click cycle
8+
- fix jshint ref in makefile
9+
- fix trying to remove backdrop when no backdrop
10+
111
## 2.3.0 (February 7, 2013)
212

313
Minor release to add carousel indicators, improve tooltips, improve dev setup, and fix hella bugs.

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ build:
1515
@echo "\n${HR}"
1616
@echo "Building Bootstrap..."
1717
@echo "${HR}\n"
18-
@jshint js/*.js --config js/.jshintrc
19-
@jshint js/tests/unit/*.js --config js/.jshintrc
18+
@./node_modules/.bin/jshint js/*.js --config js/.jshintrc
19+
@./node_modules/.bin/jshint js/tests/unit/*.js --config js/.jshintrc
2020
@echo "Running JSHint on javascript... ${CHECK} Done"
2121
@./node_modules/.bin/recess --compile ${BOOTSTRAP_LESS} > ${BOOTSTRAP}
2222
@./node_modules/.bin/recess --compile ${BOOTSTRAP_RESPONSIVE_LESS} > ${BOOTSTRAP_RESPONSIVE}
@@ -28,7 +28,7 @@ build:
2828
@echo "Compiling documentation... ${CHECK} Done"
2929
@cat js/bootstrap-transition.js js/bootstrap-alert.js js/bootstrap-button.js js/bootstrap-carousel.js js/bootstrap-collapse.js js/bootstrap-dropdown.js js/bootstrap-modal.js js/bootstrap-tooltip.js js/bootstrap-popover.js js/bootstrap-scrollspy.js js/bootstrap-tab.js js/bootstrap-typeahead.js js/bootstrap-affix.js > docs/assets/js/bootstrap.js
3030
@./node_modules/.bin/uglifyjs -nc docs/assets/js/bootstrap.js > docs/assets/js/bootstrap.min.tmp.js
31-
@echo "/**\n* Bootstrap.js v2.3.0 by @fat & @mdo\n* Copyright 2012 Twitter, Inc.\n* http://www.apache.org/licenses/LICENSE-2.0.txt\n*/" > docs/assets/js/copyright.js
31+
@echo "/**\n* Bootstrap.js v2.3.1 by @fat & @mdo\n* Copyright 2012 Twitter, Inc.\n* http://www.apache.org/licenses/LICENSE-2.0.txt\n*/" > docs/assets/js/copyright.js
3232
@cat docs/assets/js/copyright.js docs/assets/js/bootstrap.min.tmp.js > docs/assets/js/bootstrap.min.js
3333
@rm docs/assets/js/copyright.js docs/assets/js/bootstrap.min.tmp.js
3434
@echo "Compiling and minifying javascript... ${CHECK} Done"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<img src="http://twitter.github.com/bootstrap/assets/img/bootstrap-docs-readme.png" width="100px">
33
</a>
44

5-
# [Bootstrap v2.3.0](http://twitter.github.com/bootstrap) [![Build Status](https://secure.travis-ci.org/twitter/bootstrap.png)](http://travis-ci.org/twitter/bootstrap)
5+
# [Bootstrap v2.3.1](http://twitter.github.com/bootstrap) [![Build Status](https://secure.travis-ci.org/twitter/bootstrap.png)](http://travis-ci.org/twitter/bootstrap)
66

77
Bootstrap is a sleek, intuitive, and powerful front-end framework for faster and easier web development, created and maintained by [Mark Otto](http://twitter.com/mdo) and [Jacob Thornton](http://twitter.com/fat).
88

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"main": ["./docs/assets/js/bootstrap.js", "./docs/assets/css/bootstrap.css"],
55
"dependencies": {
66
"jquery": "~1.8.0"

docs/assets/css/bootstrap-responsive.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Bootstrap Responsive v2.3.0
2+
* Bootstrap Responsive v2.3.1
33
*
44
* Copyright 2012 Twitter, Inc
55
* Licensed under the Apache License v2.0

docs/assets/css/bootstrap.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Bootstrap v2.3.0
2+
* Bootstrap v2.3.1
33
*
44
* Copyright 2012 Twitter, Inc
55
* Licensed under the Apache License v2.0

docs/assets/js/bootstrap-affix.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ==========================================================
2-
* bootstrap-affix.js v2.3.0
2+
* bootstrap-affix.js v2.3.1
33
* http://twitter.github.com/bootstrap/javascript.html#affix
44
* ==========================================================
55
* Copyright 2012 Twitter, Inc.

docs/assets/js/bootstrap-alert.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ==========================================================
2-
* bootstrap-alert.js v2.3.0
2+
* bootstrap-alert.js v2.3.1
33
* http://twitter.github.com/bootstrap/javascript.html#alerts
44
* ==========================================================
55
* Copyright 2012 Twitter, Inc.

docs/assets/js/bootstrap-button.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ============================================================
2-
* bootstrap-button.js v2.3.0
2+
* bootstrap-button.js v2.3.1
33
* http://twitter.github.com/bootstrap/javascript.html#buttons
44
* ============================================================
55
* Copyright 2012 Twitter, Inc.

docs/assets/js/bootstrap-carousel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ==========================================================
2-
* bootstrap-carousel.js v2.3.0
2+
* bootstrap-carousel.js v2.3.1
33
* http://twitter.github.com/bootstrap/javascript.html#carousel
44
* ==========================================================
55
* Copyright 2012 Twitter, Inc.
@@ -75,7 +75,7 @@
7575
if (!e) this.paused = true
7676
if (this.$element.find('.next, .prev').length && $.support.transition.end) {
7777
this.$element.trigger($.support.transition.end)
78-
this.cycle()
78+
this.cycle(true)
7979
}
8080
clearInterval(this.interval)
8181
this.interval = null

0 commit comments

Comments
 (0)