Changeset 3620 in subversion
- Timestamp:
- May 15, 2010 8:15:58 AM (3 years ago)
- Location:
- trunk/roundcubemail/program
- Files:
-
- 6 edited
-
js/app.js (modified) (1 diff)
-
steps/mail/check_recent.inc (modified) (1 diff)
-
steps/mail/func.inc (modified) (3 diffs)
-
steps/mail/list.inc (modified) (1 diff)
-
steps/mail/mark.inc (modified) (1 diff)
-
steps/mail/move_del.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/js/app.js
r3619 r3620 1691 1691 }; 1692 1692 1693 // messages list handling in background (for performance)1694 this.offline_message_list = function(flag)1695 {1696 if (this.message_list)1697 this.message_list.set_background_mode(flag);1698 };1699 1700 1693 this.set_list_sorting = function(sort_col, sort_order) 1701 1694 { -
trunk/roundcubemail/program/steps/mail/check_recent.inc
r3612 r3620 73 73 $a_headers = $IMAP->list_headers($mbox_name, null, $_SESSION['sort_col'], $_SESSION['sort_order']); 74 74 // add message rows 75 rcmail_js_message_list($a_headers, false , false);75 rcmail_js_message_list($a_headers, false); 76 76 // remove messages that don't exists from list selection array 77 77 $OUTPUT->command('update_selection'); -
trunk/roundcubemail/program/steps/mail/func.inc
r3595 r3620 222 222 * or to replace the whole list (IE only) 223 223 */ 224 function rcmail_js_message_list($a_headers, $insert_top=FALSE, $ replace=TRUE, $head_replace=FALSE)224 function rcmail_js_message_list($a_headers, $insert_top=FALSE, $head_replace=FALSE) 225 225 { 226 226 global $CONFIG, $IMAP, $OUTPUT; … … 251 251 if(($key = array_search('flag', $a_show_cols)) !== FALSE) 252 252 unset($a_show_cols[$key]); 253 254 if ($OUTPUT->browser->ie && $replace)255 $OUTPUT->command('offline_message_list', true);256 253 257 254 // loop through message headers … … 315 312 $insert_top); 316 313 } 317 318 if ($browser->ie && $replace)319 $OUTPUT->command('offline_message_list', false);320 314 } 321 315 -
trunk/roundcubemail/program/steps/mail/list.inc
r3596 r3620 84 84 85 85 // add message rows 86 rcmail_js_message_list($a_headers, FALSE, TRUE,(bool) $cols);86 rcmail_js_message_list($a_headers, FALSE, (bool) $cols); 87 87 if (isset($a_headers) && count($a_headers)) 88 88 { -
trunk/roundcubemail/program/steps/mail/mark.inc
r3599 r3620 115 115 $jump_back ? NULL : $count); 116 116 117 rcmail_js_message_list($a_headers, false , false);117 rcmail_js_message_list($a_headers, false); 118 118 } 119 119 } -
trunk/roundcubemail/program/steps/mail/move_del.inc
r3419 r3620 129 129 $jump_back ? NULL : $count); 130 130 131 rcmail_js_message_list($a_headers, false , false);131 rcmail_js_message_list($a_headers, false); 132 132 } 133 133 }
Note: See TracChangeset
for help on using the changeset viewer.
