bootstrap/js
Aleksey V. Zapparov 626cef9fa4 Pass $element to offset top/bottom calc funcs
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; }
  }
});
```
2013-09-02 03:24:27 +02:00
..
tests deleted files not used anymore after transition to grunt-contrib-qunit 2013-08-30 21:39:48 +02:00
.jshintrc get jshint close to passing by updating .jshintrc settings 2013-07-27 21:56:44 -07:00
affix.js Pass $element to offset top/bottom calc funcs 2013-09-02 03:24:27 +02:00
alert.js twbs ALL the links 2013-07-25 12:24:13 -07:00
button.js fixes #8957 2013-08-02 15:13:12 -07:00
carousel.js fixes #8983 2013-08-11 15:41:06 -07:00
collapse.js Drop the accordion for the panel 2013-08-12 23:36:25 -07:00
dropdown.js fixes #9745 2013-08-17 16:18:26 -07:00
modal.js fixes #9579 2013-08-17 15:05:59 -07:00
popover.js fixes #9222 2013-08-10 14:09:05 -07:00
scrollspy.js fix scrollspy for window *and* children 2013-07-26 22:24:51 -07:00
tab.js twbs ALL the links 2013-07-25 12:24:13 -07:00
tooltip.js add small fix for tooltip consistency + fix customizer syntax issue 2013-08-17 20:28:58 -07:00
transition.js add small fix for tooltip consistency + fix customizer syntax issue 2013-08-17 20:28:58 -07:00