Skip to content

Commit

Permalink
fixed #19
Browse files Browse the repository at this point in the history
  • Loading branch information
hjalmers committed Aug 30, 2016
1 parent 6a35ab3 commit 6c99f65
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ Release History
---------------

## [Unreleased]
# [1.4.1] - 2016-08-30

### Fixed
- null values in data were rendered as "null" in IE, now they're converted to empty string

# [1.4.0] - 2016-08-30
### Breaking changes
- Expand property in field settings is no longer used to define which directive to use when expanding/opening a row, just pass true if clicking column should expand row. Use gtExpand attribute to pass and object containing which directive to use and optionally, if multiple rows should be allowed, add that property as well like this:
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "angular-generic-table",
"description": "Generic Table - A generic table for Angular that leverages one time binding for fast rendering. Generic table uses standard markup for tables ie. table, tr and td elements etc. and has support for expanding rows, search, filters, sorting, pagination, export to CSV, column clicks, custom column rendering, custom export values.",
"version": "1.4.0",
"version": "1.4.1",
"keywords": [
"angular",
"generic-table",
Expand Down
2 changes: 1 addition & 1 deletion dist/js/angular-generic-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ angular.module('angular.generic.table').directive('genericTable', function() {
output = $compile(output)(elementScope); // compile
element.append(output); // add html
} else {
element[0].innerHTML = output; // add html
element[0].innerHTML = output === null ? '':output; // add html
}
}
};
Expand Down
4 changes: 2 additions & 2 deletions dist/js/angular-generic-table.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion generic-table/directive/generic-table/generic-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ angular.module('angular.generic.table').directive('genericTable', function() {
output = $compile(output)(elementScope); // compile
element.append(output); // add html
} else {
element[0].innerHTML = output; // add html
element[0].innerHTML = output === null ? '':output; // add html
}
}
};
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-generic-table",
"version": "1.4.0",
"version": "1.4.1",
"devDependencies": {
"bower": "1.6.2",
"bower-art-resolver": "^2.0.1",
Expand Down

0 comments on commit 6c99f65

Please sign in to comment.