Merge pull request #485 from NuCivic/update-dist-files

Updated dist files.
This commit is contained in:
Rufus Pollock 2015-07-27 10:43:31 +01:00
commit 0a6bff4584
2 changed files with 7 additions and 3 deletions

7
dist/recline.js vendored
View File

@ -3227,7 +3227,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;
}

3
dist/recline.min.js vendored

File diff suppressed because one or more lines are too long