diff --git a/source/Ox/js/Collection.js b/source/Ox/js/Collection.js index 746ed0f3..0ef492b2 100644 --- a/source/Ox/js/Collection.js +++ b/source/Ox/js/Collection.js @@ -572,7 +572,7 @@ Ox.values Returns the values of a collection @*/ Ox.values = function(collection) { var ret, type = Ox.typeOf(collection); - if (type == 'array') { + if (type == 'array' || type == 'nodelist') { ret = Ox.clone(collection); } else if (type == 'object' || type == 'storage') { ret = [];