From a2e81736a91f72c8688e6ab0f45061369614dae3 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Sat, 19 Jun 2010 13:46:11 -0400 Subject: [PATCH] - Move quota indicator to mailboxlist footer - Fix groupcontrols on IE6 (use gif) --- program/js/list.js | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/program/js/list.js b/program/js/list.js index a38890e..3309586 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -1393,6 +1393,10 @@ // update subject column position if (this.subject_col == from) this.subject_col = to > from ? to - 1 : to; + else if (this.subject_col < from && to <= this.subject_col) + this.subject_col++; + else if (this.subject_col > from && to >= this.subject_col) + this.subject_col--; this.triggerEvent('column_replace'); } -- Gitblit v1.9.1