Skip to content

Commit

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


## Bug Fixes

- **ngTableSelectFilterDs:** not binding to scope an array returned asynchronously
([4c063685](https://github.com/esvit/ng-table/commit/4c0636857c804f5d050dbf83698f0615ee1216f9))


<a name="1.0.0-beta.1"></a>
# 1.0.0-beta.1 (2015-08-29)

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.1",
"version": "1.0.0-beta.2",
"main": [
"./dist/ng-table.min.js",
"./dist/ng-table.min.css"
Expand Down
9 changes: 8 additions & 1 deletion dist/ng-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -2103,10 +2103,17 @@
ngTableSelectFilterDsController.$inject = ['$scope', '$parse', '$attrs', '$q'];
function ngTableSelectFilterDsController($scope, $parse, $attrs, $q){

var $column = {};
init();

function init(){
var $column = $parse($attrs.ngTableSelectFilterDs)($scope);
$column = $parse($attrs.ngTableSelectFilterDs)($scope);
$scope.$watch(function(){
return $column.data;
}, bindDataSource);
}

function bindDataSource(){
getSelectListData($column).then(function(data){
if (data && !hasEmptyOption(data)){
data.unshift({ id: '', title: ''});
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.1",
"version": "1.0.0-beta.2",
"author": "Vitalii Savchuk <esvit666@gmail.com>",
"license": "BSD",
"repository": {
Expand Down

0 comments on commit d97a6f8

Please sign in to comment.