Keep current value if provided

This commit is contained in:
nathangray 2018-06-13 14:44:12 -06:00
parent 0b6968447a
commit ad669ad334

View File

@ -1190,6 +1190,10 @@ var et2_vfsSelect = (function(){ "use strict"; return et2_inputWidget.extend(
} }
}, },
set_value: function(value) {
this.value = value;
},
getValue: function() { getValue: function() {
return this.value; return this.value;
} }