Skip to content

Commit 04f8c9b

Browse files
committed
Cut off release version 1.4.2
1 parent 56da4cc commit 04f8c9b

File tree

10 files changed

+11
-66673
lines changed

10 files changed

+11
-66673
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ Release History
22
---------------
33

44
## [Unreleased]
5+
# [1.4.2] - 2016-09-06
6+
7+
### Fixed
8+
- error when exporting hidden columns to excel
9+
510
# [1.4.1] - 2016-08-30
611

712
### Fixed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-generic-table",
33
"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.",
4-
"version": "1.4.1",
4+
"version": "1.4.2",
55
"keywords": [
66
"angular",
77
"generic-table",

dist/css/examples.css

Lines changed: 0 additions & 169 deletions
This file was deleted.

dist/css/examples.min.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/js/angular-generic-table.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ angular.module('angular.generic.table').directive('genericTable', function() {
481481
}
482482

483483
// if exportColumns are passed with options...
484-
if (typeof options.exportColumns !== 'undefined') {
484+
/*if (typeof options.exportColumns !== 'undefined') {
485485
// ...set value to null i.e. don't export column if it's not in the exportColumns array
486486
if (options.exportColumns.indexOf(tableSetting.objectKey)===-1){
487487
row[key] = null;
@@ -491,7 +491,7 @@ angular.module('angular.generic.table').directive('genericTable', function() {
491491
else if (typeof tableSetting.export !== 'undefined' && tableSetting.export === false) {
492492
// ...set value to null i.e. don't export column
493493
row[key] = null;
494-
}
494+
}*/
495495
}
496496
}
497497
}

dist/js/angular-generic-table.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)