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 committed by Hadi Nategh
parent 3b04c84f61
commit a6eb03f1fd

View File

@ -393,7 +393,7 @@ var et2_vfsMime = (function(){ "use strict"; return expose(et2_valueWidget.exten
} }
this.image.attr("src", src); this.image.attr("src", src);
// tooltip for mimetypes with available detailed thumbnail // 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 ? var tooltip_target = this.image.parent().parent().parent().length > 0 ?
// Nextmatch row // Nextmatch row
@ -1193,7 +1193,7 @@ var et2_vfsSelect = (function(){ "use strict"; return et2_inputWidget.extend(
set_value: function(value) { set_value: function(value) {
this.value = value; this.value = value;
}, },
getValue: function() { getValue: function() {
return this.value; return this.value;
} }