diff --git a/src/editable-form/editable-form-utils.js b/src/editable-form/editable-form-utils.js index c5320d4..6e92ae8 100644 --- a/src/editable-form/editable-form-utils.js +++ b/src/editable-form/editable-form-utils.js @@ -94,7 +94,7 @@ getConfigData: function($element) { var data = {}; $.each($element.data(), function(k, v) { - if(typeof v !== 'object' || (v && typeof v === 'object' && v.constructor === Object)) { + if(typeof v !== 'object' || (v && typeof v === 'object' && (v.constructor === Object || v.constructor === Array))) { data[k] = v; } });