diff options
author | svncommit <devs@roundcube.net> | 2006-06-30 22:02:28 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2006-06-30 22:02:28 +0000 |
commit | 25d8ba63b3c4831050e5d190cd42cf2b0b0f3a30 (patch) | |
tree | 34e871f1a9c9ec7f4e9f17f018c66b7379fb68b5 /program/js/app.js | |
parent | a894ba5029a09fb9d0453b5cf9c944ce313f8a48 (diff) |
Misc bug and compatibility fixes
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/program/js/app.js b/program/js/app.js index fb103bf43..174920cc8 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1452,6 +1452,7 @@ function rcube_webmail() for (var n in this.list_rows) { if (!filter || this.list_rows[n][filter]==true) + this.last_selected = n; this.highlight_row(n, true); } return true; @@ -3010,6 +3011,11 @@ function rcube_webmail() this.env.mailbox = mbox; }; + // for reordering column array, Konqueror workaround + this.set_message_coltypes = function(coltypes) + { + this.coltypes = coltypes; + } // create a table row in the message list this.add_message_row = function(uid, cols, flags, attachment, attop) @@ -3042,8 +3048,9 @@ function rcube_webmail() row.appendChild(col); // add each submitted col - for (var c in cols) - { + for (var n = 0; n < this.coltypes.length; n++) + { + var c = this.coltypes[n]; col = document.createElement('TD'); col.className = String(c).toLowerCase(); col.innerHTML = cols[c]; @@ -3087,7 +3094,10 @@ function rcube_webmail() { if (!this.gui_objects.mailboxlist) return false; - + + if (mbox==this.env.mailbox) + set_title = true; + var item, reg, text_obj; mbox = String(mbox).toLowerCase().replace(this.mbox_expression, ''); item = document.getElementById('rcmbx'+mbox); @@ -3104,14 +3114,14 @@ function rcube_webmail() text_obj.innerHTML += ' ('+count+')'; else text_obj.innerHTML = text_obj.innerHTML.replace(reg, ''); - + // set the right classes this.set_classname(item, 'unread', count>0 ? true : false); } // set unread count to window title reg = /^\([0-9]+\)\s+/i; - if (set_title && count && document.title) + if (set_title && document.title) { var doc_title = String(document.title); @@ -3122,11 +3132,6 @@ function rcube_webmail() else document.title = doc_title.replace(reg, ''); } - // remove unread count from window title - else if (document.title) - { - document.title = document.title.replace(reg, ''); - } }; |