Check that file mime is there before trying to match on it to avoid error if it's false

This commit is contained in:
nathangray 2018-07-18 12:24:06 -06:00
parent 10db110ea3
commit 675f0e2998

View File

@ -405,7 +405,7 @@ var et2_vfsMime = (function(){ "use strict"; return expose(et2_valueWidget.exten
}
this.image.attr("src", src);
// tooltip for mimetypes with available detailed thumbnail
if (_value.mime.match(/application\/vnd\.oasis\.opendocument\.(text|presentation|spreadsheet|chart)/))
if (_value.mime && _value.mime.match(/application\/vnd\.oasis\.opendocument\.(text|presentation|spreadsheet|chart)/))
{
var tooltip_target = this.image.parent().parent().parent().length > 0 ?
// Nextmatch row
@ -1205,7 +1205,7 @@ var et2_vfsSelect = (function(){ "use strict"; return et2_inputWidget.extend(
set_value: function(value) {
this.value = value;
},
getValue: function() {
return this.value;
}