|
| 1 | +# 0.8.0 (2013-12-28) |
| 2 | + |
| 3 | +## Features |
| 4 | + |
| 5 | +- **datepicker:** |
| 6 | + - option whether to display button bar in popup ([4d158e0d](http://github.com/angular-ui/bootstrap/commit/4d158e0d)) |
| 7 | +- **modal:** |
| 8 | + - add modal-open class to body on modal open ([e76512fa](http://github.com/angular-ui/bootstrap/commit/e76512fa)) |
| 9 | +- **progressbar:** |
| 10 | + - add `max` attribute & support transclusion ([365573ab](http://github.com/angular-ui/bootstrap/commit/365573ab)) |
| 11 | +- **timepicker:** |
| 12 | + - default meridian labels based on locale ([8b1ab79a](http://github.com/angular-ui/bootstrap/commit/8b1ab79a)) |
| 13 | +- **typeahead:** |
| 14 | + - add typeahead-append-to-body option ([dd8eac22](http://github.com/angular-ui/bootstrap/commit/dd8eac22)) |
| 15 | + |
| 16 | +## Bug Fixes |
| 17 | + |
| 18 | +- **accordion:** |
| 19 | + - correct `is-open` handling for dynamic groups ([9ec21286](http://github.com/angular-ui/bootstrap/commit/9ec21286)) |
| 20 | +- **carousel:** |
| 21 | + - cancel timer on scope destruction ([5b9d929c](http://github.com/angular-ui/bootstrap/commit/5b9d929c)) |
| 22 | + - cancel goNext on scope destruction ([7515df45](http://github.com/angular-ui/bootstrap/commit/7515df45)) |
| 23 | +- **collapse:** |
| 24 | + - dont animate height changes from 0 to 0 ([81e014a8](http://github.com/angular-ui/bootstrap/commit/81e014a8)) |
| 25 | +- **datepicker:** |
| 26 | + - set default zero time after no date selected ([93cd0df8](http://github.com/angular-ui/bootstrap/commit/93cd0df8)) |
| 27 | + - fire `ngChange` on today/clear button press ([6b1c68fb](http://github.com/angular-ui/bootstrap/commit/6b1c68fb)) |
| 28 | + - remove datepicker's popup on scope destroy ([48955d69](http://github.com/angular-ui/bootstrap/commit/48955d69)) |
| 29 | + - remove edge case position updates ([1fbcb5d6](http://github.com/angular-ui/bootstrap/commit/1fbcb5d6)) |
| 30 | +- **modal:** |
| 31 | + - put backdrop in before window ([d64f4a97](http://github.com/angular-ui/bootstrap/commit/d64f4a97)) |
| 32 | + - grab reference to body when it is needed in lieu of when the factory is created ([dd415a98](http://github.com/angular-ui/bootstrap/commit/dd415a98)) |
| 33 | + - focus freshly opened modal ([709e679c](http://github.com/angular-ui/bootstrap/commit/709e679c)) |
| 34 | + - properly animate backdrops on each modal opening ([672a557a](http://github.com/angular-ui/bootstrap/commit/672a557a)) |
| 35 | +- **tabs:** |
| 36 | + - make nested tabs work ([c9acebbe](http://github.com/angular-ui/bootstrap/commit/c9acebbe)) |
| 37 | +- **tooltip:** |
| 38 | + - update tooltip content when empty ([60515ae1](http://github.com/angular-ui/bootstrap/commit/60515ae1)) |
| 39 | + - support IE8 ([5dd98238](http://github.com/angular-ui/bootstrap/commit/5dd98238)) |
| 40 | + - unbind element events on scope destroy ([3fe7aa8c](http://github.com/angular-ui/bootstrap/commit/3fe7aa8c)) |
| 41 | + - respect animate attribute ([54e614a8](http://github.com/angular-ui/bootstrap/commit/54e614a8)) |
| 42 | + |
| 43 | +## Breaking Changes |
| 44 | + |
| 45 | +- **progressbar:** |
| 46 | + The onFull/onEmpty handlers & auto/stacked types have been removed. |
| 47 | + |
| 48 | + To migrate your code change your markup like below. |
| 49 | + |
| 50 | + Before: |
| 51 | + |
| 52 | +```html |
| 53 | + <progress percent="var" class="progress-warning"></progress> |
| 54 | +``` |
| 55 | + |
| 56 | + After: |
| 57 | + |
| 58 | +```html |
| 59 | + <progressbar value="var" type="warning"></progressbar> |
| 60 | +``` |
| 61 | + |
| 62 | + and for stacked instead of passing array/objects you can do: |
| 63 | + |
| 64 | +```html |
| 65 | + <progress><bar ng-repeat="obj in objs" value="obj.var" type="{{obj.type}}"></bar></progress> |
| 66 | +``` |
| 67 | + |
1 | 68 | # 0.7.0 (2013-11-22)
|
2 | 69 |
|
3 | 70 | ## Features
|
|
0 commit comments