Skip to content

Commit

Permalink
chore(release): 1.0.0-beta.9 distribution files
Browse files Browse the repository at this point in the history
  • Loading branch information
ccrowhurstram committed Nov 10, 2015
1 parent e33e03d commit 8a90326
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 8 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
<a name="1.0.0-beta.9"></a>
# 1.0.0-beta.9 (2015-11-10)


## Bug Fixes

- **ngTableController:**
- handle null data array
([e33e03dd](https://github.com/esvit/ng-table/commit/e33e03dd4d86efdcf0407ccf6890b3071050f69a))
- handle null columns array
([be6fa198](https://github.com/esvit/ng-table/commit/be6fa19816d154c3278b4659b0d06a207dd77a43))


<a name="1.0.0-beta.8"></a>
# 1.0.0-beta.8 (2015-10-24)

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-table",
"version": "1.0.0-beta.8",
"version": "1.0.0-beta.9",
"main": [
"./dist/ng-table.min.js",
"./dist/ng-table.min.css"
Expand Down
4 changes: 2 additions & 2 deletions dist/ng-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -1487,7 +1487,7 @@

this.buildColumns = function (columns) {
var result = [];
columns.forEach(function(col){
(columns || []).forEach(function(col){
result.push(ngTableColumn.buildColumn(col, $scope, result));
});
return result
Expand Down Expand Up @@ -1599,7 +1599,7 @@
$scope.$groups = newDatapage || [];
$scope.$groups.visibleColumnCount = visibleColumns.length;
} else {
$scope.$data = newDatapage;
$scope.$data = newDatapage || [];
$scope.$data.visibleColumnCount = visibleColumns.length;
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/ng-table.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/ng-table.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ng-table.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-table",
"version": "1.0.0-beta.8",
"version": "1.0.0-beta.9",
"author": "Vitalii Savchuk <esvit666@gmail.com>",
"license": "BSD",
"repository": {
Expand Down

0 comments on commit 8a90326

Please sign in to comment.