Skip to content

Commit

Permalink
Merge branch 'maxious-2490-recline-column-name-fix'
Browse files Browse the repository at this point in the history
  • Loading branch information
amercader committed Jul 22, 2015
2 parents e711c1d + 12e9f11 commit ea48ba3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ckanext/reclineview/theme/public/vendor/recline/recline.js
Expand Up @@ -3222,7 +3222,12 @@ my.SlickGrid = Backbone.View.extend({
}

function sanitizeFieldName(name) {
var sanitized = $(name).text();
var sanitized;
try{
sanitized = $(name).text();
} catch(e) {
sanitized = '';
}
return (name !== sanitized && sanitized !== '') ? sanitized : name;
}

Expand Down

0 comments on commit ea48ba3

Please sign in to comment.