| Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
Conflicts:
javascript.html
|
|
|
|
|
|
|
|
|
|
address #10343 more directly: add note on carousel transitions in IE8+9
|
|
|
|
|
|
|
|
|
|
"placehoder" (sic)
|
|
|
|
CSS vs. LESS vs. styles terminology; "precompiled" terminology
|
|
|
|
IE8 improperly computes width
|
|
|
|
|
|
|
|
|
|
|
|
Thanks David.
|
|
|
|
|
|
|
|
Refactoring the paragraph describing the 'Examples' section.
|
|
|
|
|
|
|
|
|
|
'Disabling responsiveness' section of docs: simplification and focus
|
|
|
|
CSE and expand to include CSS and Less options
|
|
responsiveness' section.
|
|
|
|
Fixed glyphicons count
|
|
Update index.html (change from 'hero unit' to 'jumbotron')
|
|
Updated text in the jumbotron container to reflect the Bootstrap 3 change from 'hero unit' to 'jumbotron'.
|
|
Completion of parentheses
|
|
|
|
|
|
At the moment to make dynamic top offset calculator on multiple elements, one would write:
``` javascript
$('.my-affix').each(function () {
var $el = $(this);
$el.affix({
offset: {
top: function () { return $el.offset().top; }
}
});
})
```
This patch will allow to:
``` javascript
$('.my-affix').affix({
offset: {
top: function ($el) { return $el.offset().top; }
}
});
```
|
|
|
|
|
|
minor improvements to affix docs
|
|
HTML5 features and their support in Bootstrap
|
|
example--nullifies #9894
|
|
|
|
active bg variable
|
|
box-sizing warning
|