Skip to content

Commit 3469339

Browse files
committed
2.3.1
1 parent cec434a commit 3469339

39 files changed

+61
-52
lines changed

CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
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+
110
## 2.3.0 (February 7, 2013)
211

312
Minor release to add carousel indicators, improve tooltips, improve dev setup, and fix hella bugs.
@@ -21,7 +30,7 @@ Minor release to add carousel indicators, improve tooltips, improve dev setup, a
2130
- Added [new justified navigation example](https://f.cloud.github.com/assets/98681/25869/5e2f812c-4afa-11e2-9293-501cd689232d.png).
2231
- Added sticky footer with fixed navbar example.
2332

24-
See more on the [2.3.0 pull request](https://github.com/twitter/bootstrap/pull/6346).
33+
See more on the [2.3.1 pull request](https://github.com/twitter/bootstrap/pull/6346).
2534

2635

2736
## 2.2.2 (December 8, 2012)

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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.

docs/assets/js/bootstrap-collapse.js

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

docs/assets/js/bootstrap-dropdown.js

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

docs/assets/js/bootstrap-modal.js

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

docs/assets/js/bootstrap-popover.js

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

docs/assets/js/bootstrap-scrollspy.js

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

docs/assets/js/bootstrap-tab.js

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

docs/assets/js/bootstrap-tooltip.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ===========================================================
2-
* bootstrap-tooltip.js v2.3.0
2+
* bootstrap-tooltip.js v2.3.1
33
* http://twitter.github.com/bootstrap/javascript.html#tooltips
44
* Inspired by the original jQuery.tipsy by Jason Frame
55
* ===========================================================

docs/assets/js/bootstrap-transition.js

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

docs/assets/js/bootstrap-typeahead.js

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

docs/assets/js/bootstrap.js

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ===================================================
2-
* bootstrap-transition.js v2.3.0
2+
* bootstrap-transition.js v2.3.1
33
* http://twitter.github.com/bootstrap/javascript.html#transitions
44
* ===================================================
55
* Copyright 2012 Twitter, Inc.
@@ -58,7 +58,7 @@
5858
})
5959

6060
}(window.jQuery);/* ==========================================================
61-
* bootstrap-alert.js v2.3.0
61+
* bootstrap-alert.js v2.3.1
6262
* http://twitter.github.com/bootstrap/javascript.html#alerts
6363
* ==========================================================
6464
* Copyright 2012 Twitter, Inc.
@@ -156,7 +156,7 @@
156156
$(document).on('click.alert.data-api', dismiss, Alert.prototype.close)
157157

158158
}(window.jQuery);/* ============================================================
159-
* bootstrap-button.js v2.3.0
159+
* bootstrap-button.js v2.3.1
160160
* http://twitter.github.com/bootstrap/javascript.html#buttons
161161
* ============================================================
162162
* Copyright 2012 Twitter, Inc.
@@ -260,7 +260,7 @@
260260
})
261261

262262
}(window.jQuery);/* ==========================================================
263-
* bootstrap-carousel.js v2.3.0
263+
* bootstrap-carousel.js v2.3.1
264264
* http://twitter.github.com/bootstrap/javascript.html#carousel
265265
* ==========================================================
266266
* Copyright 2012 Twitter, Inc.
@@ -466,7 +466,7 @@
466466
})
467467

468468
}(window.jQuery);/* =============================================================
469-
* bootstrap-collapse.js v2.3.0
469+
* bootstrap-collapse.js v2.3.1
470470
* http://twitter.github.com/bootstrap/javascript.html#collapse
471471
* =============================================================
472472
* Copyright 2012 Twitter, Inc.
@@ -632,7 +632,7 @@
632632
})
633633

634634
}(window.jQuery);/* ============================================================
635-
* bootstrap-dropdown.js v2.3.0
635+
* bootstrap-dropdown.js v2.3.1
636636
* http://twitter.github.com/bootstrap/javascript.html#dropdowns
637637
* ============================================================
638638
* Copyright 2012 Twitter, Inc.
@@ -797,7 +797,7 @@
797797

798798
}(window.jQuery);
799799
/* =========================================================
800-
* bootstrap-modal.js v2.3.0
800+
* bootstrap-modal.js v2.3.1
801801
* http://twitter.github.com/bootstrap/javascript.html#modals
802802
* =========================================================
803803
* Copyright 2012 Twitter, Inc.
@@ -1044,7 +1044,7 @@
10441044

10451045
}(window.jQuery);
10461046
/* ===========================================================
1047-
* bootstrap-tooltip.js v2.3.0
1047+
* bootstrap-tooltip.js v2.3.1
10481048
* http://twitter.github.com/bootstrap/javascript.html#tooltips
10491049
* Inspired by the original jQuery.tipsy by Jason Frame
10501050
* ===========================================================
@@ -1405,7 +1405,7 @@
14051405

14061406
}(window.jQuery);
14071407
/* ===========================================================
1408-
* bootstrap-popover.js v2.3.0
1408+
* bootstrap-popover.js v2.3.1
14091409
* http://twitter.github.com/bootstrap/javascript.html#popovers
14101410
* ===========================================================
14111411
* Copyright 2012 Twitter, Inc.
@@ -1519,7 +1519,7 @@
15191519

15201520
}(window.jQuery);
15211521
/* =============================================================
1522-
* bootstrap-scrollspy.js v2.3.0
1522+
* bootstrap-scrollspy.js v2.3.1
15231523
* http://twitter.github.com/bootstrap/javascript.html#scrollspy
15241524
* =============================================================
15251525
* Copyright 2012 Twitter, Inc.
@@ -1680,7 +1680,7 @@
16801680
})
16811681

16821682
}(window.jQuery);/* ========================================================
1683-
* bootstrap-tab.js v2.3.0
1683+
* bootstrap-tab.js v2.3.1
16841684
* http://twitter.github.com/bootstrap/javascript.html#tabs
16851685
* ========================================================
16861686
* Copyright 2012 Twitter, Inc.
@@ -1823,7 +1823,7 @@
18231823
})
18241824

18251825
}(window.jQuery);/* =============================================================
1826-
* bootstrap-typeahead.js v2.3.0
1826+
* bootstrap-typeahead.js v2.3.1
18271827
* http://twitter.github.com/bootstrap/javascript.html#typeahead
18281828
* =============================================================
18291829
* Copyright 2012 Twitter, Inc.
@@ -2158,7 +2158,7 @@
21582158

21592159
}(window.jQuery);
21602160
/* ==========================================================
2161-
* bootstrap-affix.js v2.3.0
2161+
* bootstrap-affix.js v2.3.1
21622162
* http://twitter.github.com/bootstrap/javascript.html#affix
21632163
* ==========================================================
21642164
* Copyright 2012 Twitter, Inc.

docs/assets/js/bootstrap.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ <h1>Bootstrap</h1>
8787
<a href="./extend.html" >Extend</a>
8888
</li>
8989
<li>
90-
Version 2.3.0
90+
Version 2.3.1
9191
</li>
9292
</ul>
9393
</div>

docs/templates/pages/index.mustache

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<h1>{{_i}}Bootstrap{{/i}}</h1>
44
<p>{{_i}}Sleek, intuitive, and powerful front-end framework for faster and easier web development.{{/i}}</p>
55
<p>
6-
<a href="assets/bootstrap.zip" class="btn btn-primary btn-large" {{#production}}onclick="_gaq.push(['_trackEvent', 'Jumbotron actions', 'Download', 'Download 2.3.0']);"{{/production}}>{{_i}}Download Bootstrap{{/i}}</a>
6+
<a href="assets/bootstrap.zip" class="btn btn-primary btn-large" {{#production}}onclick="_gaq.push(['_trackEvent', 'Jumbotron actions', 'Download', 'Download 2.3.1']);"{{/production}}>{{_i}}Download Bootstrap{{/i}}</a>
77
</p>
88
<ul class="masthead-links">
99
<li>
@@ -16,7 +16,7 @@
1616
<a href="./extend.html" {{#production}}onclick="_gaq.push(['_trackEvent', 'Jumbotron actions', 'Jumbotron links', 'Extend']);"{{/production}}>{{_i}}Extend{{/i}}</a>
1717
</li>
1818
<li>
19-
{{_i}}Version 2.3.0{{/i}}
19+
{{_i}}Version 2.3.1{{/i}}
2020
</li>
2121
</ul>
2222
</div>

js/bootstrap-affix.js

+1-1
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.

js/bootstrap-alert.js

+1-1
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.

js/bootstrap-button.js

+1-1
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.

js/bootstrap-carousel.js

+1-1
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.

js/bootstrap-collapse.js

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

js/bootstrap-dropdown.js

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

js/bootstrap-modal.js

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

js/bootstrap-popover.js

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

js/bootstrap-scrollspy.js

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

js/bootstrap-tab.js

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

js/bootstrap-tooltip.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* ===========================================================
2-
* bootstrap-tooltip.js v2.3.0
2+
* bootstrap-tooltip.js v2.3.1
33
* http://twitter.github.com/bootstrap/javascript.html#tooltips
44
* Inspired by the original jQuery.tipsy by Jason Frame
55
* ===========================================================

js/bootstrap-transition.js

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

js/bootstrap-typeahead.js

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

less/bootstrap.less

+1-1
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

0 commit comments

Comments
 (0)