Updated dist files.

This commit is contained in:
Andrés Díaz Soto 2015-07-22 16:45:41 -06:00
parent 2b09102405
commit 842f103f02
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