## Change Log #### Version 0.10.10 ###### December 14, 2016 **Future Proofing** * Merge #517 from [@christophercr](https://github.com/christophercr) to change the restriction on the `mdTableProgress` directive from class name to attribute to support newer versions of AngularJS. #### Version 0.10.9 ###### April 26, 2016 **Bug Fix** * Removing one time binding from pagination limit options. #### Version 0.10.8 ###### April 23, 2016 **New Feature** * You can now map language to limit options using the `label` and `value` properties, e.g. ```javascript ctrl.limitOptions = [5, 10, 15, { label: 'All', value: function () { return collection.length; } }]; ``` #### Version 0.10.7 ###### April 19, 2016 **Bug Fixes** * Fix bug where pagination page number would disappear. #### Version 0.10.6 ###### April 19, 2016 **Bug Fixes** * Fixing bug where changing the `orderBy` property of a column would add an additional sort icon. #### Version 0.10.5 ###### April 9, 2016 **Bug Fixes** * Fixing bug in pagination directive where the number of pages was always equal to the number of rows in the table. #### Version 0.10.4 ###### April 5, 2016 **Improvements** * Pagination is now usable on mobile. * More safeguards in pagination directive against performing calculations on `NaN`. **Bug Fixes** * Fixing issue where errors would be thrown if row selection was not enabled. #### Version 0.10.3 ###### April 1, 2016 **Bug Fixes** * The pagination directive will now display `0 - 0 of 0` if the total is zero. #### Version 0.10.2 ###### March 30, 2016 **Bug Fixes** * Fixes bug where the select all checkbox would not be added to subsequent tables. #### Version 0.10.1 ###### March 27, 2016 **New Features** * Pagination elements may now be disabled with the `ng-disabled` attribute. **Bug Fixes & Improvements** * When the total changes, the pagination directive will check if the current page is greater than the total number of pages. If it is greater, the page will be set to the last available page. #### Version 0.10.0 ###### March 27, 2016 **Breaking Changes** * Multiple selection must now be enabled with the `multiple` attribute. ```html