Skip to content

Commit

Permalink
solves #16
Browse files Browse the repository at this point in the history
  • Loading branch information
asafdav committed Apr 27, 2014
1 parent 4a99747 commit 12c6db4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build/ng-csv.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ angular.module('ngCsv.directives', []).
encodingArray = [];
angular.forEach(header, function(title, key)
{
this.push(title);
this.push(stringifyCell(title));
}, encodingArray);
}

Expand Down Expand Up @@ -131,7 +131,7 @@ angular.module('ngCsv.directives', []).

angular.forEach(row, function(field, key)
{
this.push(field);
this.push(stringifyCell(field));
}, infoArray);
}

Expand Down
2 changes: 1 addition & 1 deletion build/ng-csv.min.js

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

4 changes: 2 additions & 2 deletions src/ng-csv/directives/ng-csv.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ angular.module('ngCsv.directives', []).
encodingArray = [];
angular.forEach(header, function(title, key)
{
this.push(title);
this.push(stringifyCell(title));
}, encodingArray);
}

Expand Down Expand Up @@ -104,7 +104,7 @@ angular.module('ngCsv.directives', []).

angular.forEach(row, function(field, key)
{
this.push(field);
this.push(stringifyCell(field));
}, infoArray);
}

Expand Down

0 comments on commit 12c6db4

Please sign in to comment.