From 951e658003eca3f54aa6abfeb8456cfde81e979e Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Fri, 9 Aug 2013 18:38:47 +0000 Subject: [PATCH] don't clone items passed to list (fixes update) --- source/Ox.UI/js/Video/ClipPanel.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Ox.UI/js/Video/ClipPanel.js b/source/Ox.UI/js/Video/ClipPanel.js index 0eb03e88..c02f3095 100644 --- a/source/Ox.UI/js/Video/ClipPanel.js +++ b/source/Ox.UI/js/Video/ClipPanel.js @@ -22,7 +22,7 @@ Ox.ClipPanel = function(options, self) { .update({ clips: function() { self.$list.options({ - items: Ox.clone(self.options.clips), + items: self.options.clips, sort: self.options.sort, sortable: isSortable() }); @@ -290,7 +290,7 @@ Ox.ClipPanel = function(options, self) { columnsRemovable: true, columnsResizable: true, columnsVisible: true, - items: Ox.clone(self.options.clips), + items: self.options.clips, scrollbarVisible: true, sort: self.options.sort, sortable: isSortable(),