From eb62b5f6c702ab657718918afdf4f80191127092 Mon Sep 17 00:00:00 2001 From: rolux Date: Thu, 23 Dec 2010 14:51:35 +0000 Subject: [PATCH] fixing a bug where dblclick on titlebar of collapsepanel would expand or collapse the wrong panel --- build/js/ox.ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/js/ox.ui.js b/build/js/ox.ui.js index 16e76b8..74b8a21 100644 --- a/build/js/ox.ui.js +++ b/build/js/ox.ui.js @@ -8830,7 +8830,7 @@ requires .addClass('OxCollapsePanel'), title = self.options.collapsed ? [{id: 'expand', title: 'expand'}, {id: 'collapse', title: 'collapse'}] : - [{id: 'collapse', title: 'collapse'}, {id: 'expand', title: 'expand'}]; + [{id: 'collapse', title: 'collapse'}, {id: 'expand', title: 'expand'}], $titlebar = new Ox.Bar({ orientation: 'horizontal', size: self.options.size,