Make sure options are available before getting access to its properties

-Avoid error while saving tracker using IE 11
This commit is contained in:
Hadi Nategh 2014-10-06 15:56:47 +00:00
parent 14583e5b4a
commit 0db144feb9

View File

@ -768,7 +768,7 @@ var et2_link_entry = et2_inputWidget.extend(
},
getValue: function() {
var value = this.options && this.options.only_app ? this.options.value.id : this.options.value || null;
var value = this.options && this.options.only_app ? this.options.value.id : this.options? this.options.value: null;
if(!this.options.only_app && this.search)
{
value.search = this.search.val();