From fef7880dbf57854e1ae57c05d30d8e5e8d029c4f Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Fri, 7 Feb 2014 12:26:07 +0000 Subject: [PATCH] disable sort by out --- source/Ox.UI/js/Video/ClipPanel.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/Ox.UI/js/Video/ClipPanel.js b/source/Ox.UI/js/Video/ClipPanel.js index 6e9a8705..f9ce1711 100644 --- a/source/Ox.UI/js/Video/ClipPanel.js +++ b/source/Ox.UI/js/Video/ClipPanel.js @@ -125,7 +125,6 @@ Ox.ClipPanel = function(options, self) { ).join(Ox.formatDuration(value, 3)); }, id: 'out', - operator: '+', title: Ox._('Out'), visible: true, width: 90 @@ -430,7 +429,7 @@ Ox.ClipPanel = function(options, self) { that.triggerEvent('select', data); }, sort: function(data) { - if (['in', 'out'].indexOf(data.key) > -1) { + if (data.key == 'in') { data.key = 'position'; } self.options.sort = [data];