| | |
| | | /** |
| | | * Roundcube functions for default skin interface |
| | | * |
| | | * Copyright (c) 2011, The Roundcube Dev Team |
| | | * Copyright (c) 2013, The Roundcube Dev Team |
| | | * |
| | | * The contents are subject to the Creative Commons Attribution-ShareAlike |
| | | * License. It is allowed to copy, distribute, transmit and to adapt the work |
| | | * by keeping credits to the original autors in the README file. |
| | | * See http://creativecommons.org/licenses/by-sa/3.0/ for details. |
| | | * |
| | | * $Id$ |
| | | */ |
| | | |
| | | |
| | |
| | | var popupconfig = { |
| | | forwardmenu: { editable:1 }, |
| | | searchmenu: { editable:1, callback:searchmenu }, |
| | | attachmentmenu: { }, |
| | | listoptions: { editable:1 }, |
| | | dragmessagemenu: { sticky:1 }, |
| | | dragmenu: { sticky:1 }, |
| | | groupmenu: { above:1 }, |
| | | mailboxmenu: { above:1 }, |
| | | composeoptionsmenu: { editable:1, overlap:1 }, |
| | | spellmenu: { callback: spellmenu }, |
| | | // toggle: #1486823, #1486930 |
| | | 'attachment-form': { editable:1, above:1, toggle:!bw.ie&&!bw.linux }, |
| | |
| | | this.init_tabs = init_tabs; |
| | | this.show_about = show_about; |
| | | this.show_popup = show_popup; |
| | | this.add_popup = add_popup; |
| | | this.set_searchmod = set_searchmod; |
| | | this.show_uploadform = show_uploadform; |
| | | this.show_header_row = show_header_row; |
| | | this.hide_header_row = hide_header_row; |
| | | this.update_quota = update_quota; |
| | | |
| | | |
| | | // set minimal mode on small screens (don't wait for document.ready) |
| | | if (window.$ && document.body) { |
| | | var minmode = rcmail.get_cookie('minimalmode'); |
| | | if (parseInt(minmode) || (minmode === null && $(window).height() < 850)) { |
| | | $(document.body).addClass('minimal'); |
| | | } |
| | | } |
| | | |
| | | |
| | | /** |
| | |
| | | { |
| | | rcmail.addEventListener('message', message_displayed); |
| | | |
| | | /*** prepare minmode functions ***/ |
| | | $('#taskbar a').each(function(i,elem){ |
| | | $(elem).append('<span class="tooltip">' + $('.button-inner', this).html() + '</span>') |
| | | }); |
| | | |
| | | $('#taskbar .minmodetoggle').click(function(e){ |
| | | var ismin = $(document.body).toggleClass('minimal').hasClass('minimal'); |
| | | rcmail.set_cookie('minimalmode', ismin?1:0); |
| | | $(window).resize(); |
| | | }); |
| | | |
| | | /*** mail task ***/ |
| | | if (rcmail.env.task == 'mail') { |
| | | rcmail.addEventListener('menu-open', show_listoptions); |
| | | rcmail.addEventListener('menu-save', save_listoptions); |
| | | rcmail.addEventListener('menu-open', menu_open); |
| | | rcmail.addEventListener('menu-save', menu_save); |
| | | rcmail.addEventListener('responseafterlist', function(e){ switch_view_mode(rcmail.env.threading ? 'thread' : 'list') }); |
| | | |
| | | var dragmenu = $('#dragmessagemenu'); |
| | | if (dragmenu.length) { |
| | | rcmail.gui_object('message_dragmenu', 'dragmessagemenu'); |
| | | popups.dragmessagemenu = dragmenu; |
| | | rcmail.gui_object('dragmenu', 'dragmessagemenu'); |
| | | popups.dragmenu = dragmenu; |
| | | } |
| | | |
| | | if (rcmail.env.action == 'show' || rcmail.env.action == 'preview') { |
| | | layout_messageview(); |
| | | rcmail.addEventListener('enable-command', enable_command); |
| | | rcmail.addEventListener('aftershow-headers', function() { layout_messageview(); }); |
| | | rcmail.addEventListener('afterhide-headers', function() { layout_messageview(); }); |
| | | $('#previewheaderstoggle').click(function(e){ toggle_preview_headers(this); return false }); |
| | | $('#previewheaderstoggle').click(function(e){ toggle_preview_headers(); return false }); |
| | | |
| | | // add menu link for each attachment |
| | | $('#attachment-list > li').each(function() { |
| | | $(this).append($('<a class="drop">').click(function() { attachmentmenu(this); })); |
| | | }); |
| | | } |
| | | else if (rcmail.env.action == 'compose') { |
| | | rcmail.addEventListener('aftertoggle-editor', function(){ window.setTimeout(function(){ layout_composeview() }, 200); }); |
| | |
| | | layout_composeview(); |
| | | |
| | | // Show input elements with non-empty value |
| | | var field, fields = ['cc', 'bcc', 'replyto', 'followupto']; |
| | | for (var f=0; f < fields.length; f++) { |
| | | if ((field = $('#_'+fields[f])) && field.length && field.val() != '') |
| | | show_header_row(fields[f], true); |
| | | var f, v, field, fields = ['cc', 'bcc', 'replyto', 'followupto']; |
| | | for (f=0; f < fields.length; f++) { |
| | | v = fields[f]; field = $('#_'+v); |
| | | if (field.length) { |
| | | field.on('change', {v: v}, function(e) { if (this.value) show_header_row(e.data.v, true); }); |
| | | if (field.val() != '') |
| | | show_header_row(v, true); |
| | | } |
| | | } |
| | | |
| | | $('#composeoptionstoggle').parent().click(function(){ |
| | | $('#composeoptionstoggle').toggleClass('enabled'); |
| | | $('#composeoptionstoggle').click(function(){ |
| | | $('#composeoptionstoggle').toggleClass('remove'); |
| | | $('#composeoptions').toggle(); |
| | | layout_composeview(); |
| | | return false; |
| | | }).css('cursor', 'pointer'); |
| | | |
| | | // toggle compose options if opened in new window and they were visible before |
| | | var opener_rc = rcmail.opener(); |
| | | if (opener_rc && opener_rc.env.action == 'compose' && $('#composeoptionstoggle', opener.document).hasClass('remove')) |
| | | $('#composeoptionstoggle').click(); |
| | | |
| | | new rcube_splitter({ id:'composesplitterv', p1:'#composeview-left', p2:'#composeview-right', |
| | | orientation:'v', relative:true, start:248, min:170, size:12, render:layout_composeview }).init(); |
| | |
| | | $('#mailthreadmode').addClass(rcmail.env.threading ? 'selected' : '').click(function(e){ switch_view_mode('thread'); return false }); |
| | | |
| | | mailviewsplit = new rcube_splitter({ id:'mailviewsplitter', p1:'#mailview-top', p2:'#mailview-bottom', |
| | | orientation:'h', relative:true, start:310, min:150, size:0, offset:-22 }); |
| | | orientation:'h', relative:true, start:310, min:150, size:12, offset:4 }); |
| | | if (previewframe) |
| | | mailviewsplit.init(); |
| | | |
| | | new rcube_scroller('#folderlist-content', '#folderlist-header', '#folderlist-footer'); |
| | | |
| | | rcmail.addEventListener('setquota', update_quota); |
| | | rcmail.addEventListener('enable-command', enable_command); |
| | | rcmail.addEventListener('afterimport-messages', show_uploadform); |
| | | } |
| | | else if (rcmail.env.action == 'get') { |
| | | new rcube_splitter({ id:'mailpartsplitterv', p1:'#messagepartheader', p2:'#messagepartcontainer', |
| | | orientation:'v', relative:true, start:226, min:150, size:12}).init(); |
| | | } |
| | | |
| | | if ($('#mailview-left').length) { |
| | |
| | | new rcube_splitter({ id:'identviewsplitter', p1:'#identitieslist', p2:'#identity-details', |
| | | orientation:'v', relative:true, start:266, min:180, size:12 }).init(); |
| | | } |
| | | else if (rcmail.env.action == 'preferences' || !rcmail.env.action) { |
| | | new rcube_splitter({ id:'prefviewsplitter', p1:'#sectionslist', p2:'#preferences-box', |
| | | orientation:'v', relative:true, start:266, min:180, size:12 }).init(); |
| | | } |
| | | } |
| | | /*** addressbook task ***/ |
| | | else if (rcmail.env.task == 'addressbook') { |
| | | rcmail.addEventListener('afterupload-photo', show_uploadform); |
| | | rcmail.addEventListener('beforepushgroup', push_contactgroup); |
| | | rcmail.addEventListener('beforepopgroup', pop_contactgroup); |
| | | |
| | | if (rcmail.env.action == '') { |
| | | new rcube_splitter({ id:'addressviewsplitterd', p1:'#addressview-left', p2:'#addressview-right', |
| | |
| | | orientation:'v', relative:true, start:286, min:270, size:12 }).init(); |
| | | |
| | | new rcube_scroller('#directorylist-content', '#directorylist-header', '#directorylist-footer'); |
| | | } |
| | | |
| | | var dragmenu = $('#dragcontactmenu'); |
| | | if (dragmenu.length) { |
| | | rcmail.gui_object('dragmenu', 'dragcontactmenu'); |
| | | popups.dragmenu = dragmenu; |
| | | } |
| | | } |
| | | |
| | |
| | | return; |
| | | } |
| | | |
| | | var title = $('option', this).first().text(); |
| | | var select = $(this), |
| | | parent = select.parent(), |
| | | height = Math.max(select.height(), 26) - 2, |
| | | width = select.width() - 22, |
| | | title = $('option', this).first().text(); |
| | | |
| | | if ($('option:selected', this).val() != '') |
| | | title = $('option:selected', this).text(); |
| | | |
| | | var select = $(this) |
| | | .change(function(){ |
| | | var val = $('option:selected', this).text(); |
| | | $(this).next().children().html(val); |
| | | }); |
| | | |
| | | $('<a class="menuselector dropdownselector"><span class="handle">' + title + '</span></a>') |
| | | var overlay = $('<a class="menuselector"><span class="handle">' + title + '</span></a>') |
| | | .css('position', 'absolute') |
| | | .offset(select.position()) |
| | | .insertAfter(select) |
| | | .children().width(select.outerWidth() - 40); |
| | | .insertAfter(select); |
| | | |
| | | select.parent().css('position', 'relative'); |
| | | overlay.children().width(width).height(height).css('line-height', (height - 1) + 'px'); |
| | | |
| | | if (parent.css('position') != 'absolute') |
| | | parent.css('position', 'relative'); |
| | | |
| | | // re-set original select width to fix click action and options width in some browsers |
| | | select.width(overlay.width()) |
| | | .change(function() { |
| | | var val = $('option:selected', this).text(); |
| | | $(this).next().children().text(val); |
| | | }); |
| | | }); |
| | | |
| | | // set min-width to show all toolbar buttons |
| | | var screen = $('body > div.minwidth'); |
| | | if (screen.length) { |
| | | screen.css('min-width', $('.toolbar').width() + $('#quicksearchbar').width() + $('#searchfilter').width() + 30); |
| | | } |
| | | |
| | | $(document.body) |
| | | .bind('mouseup', body_mouseup) |
| | |
| | | |
| | | $('iframe').load(function(e){ |
| | | // this = iframe |
| | | var doc = this.contentDocument ? this.contentDocument : this.contentWindow ? this.contentWindow.document : null; |
| | | $(doc).mouseup(body_mouseup); |
| | | try { |
| | | var doc = this.contentDocument ? this.contentDocument : this.contentWindow ? this.contentWindow.document : null; |
| | | $(doc).mouseup(body_mouseup); |
| | | } |
| | | catch (e) { |
| | | // catch possible "Permission denied" error in IE |
| | | }; |
| | | }) |
| | | .contents().mouseup(body_mouseup); |
| | | |
| | | $(window).resize(function(e) { |
| | | // check target due to bugs in jquery |
| | | // http://bugs.jqueryui.com/ticket/7514 |
| | | // http://bugs.jquery.com/ticket/9841 |
| | | if (e.target == window) resize(); |
| | | }); |
| | | // don't use $(window).resize() due to some unwanted side-effects |
| | | window.onresize = resize; |
| | | resize(); |
| | | } |
| | | |
| | | /** |
| | |
| | | function body_mouseup(e) |
| | | { |
| | | var config, obj, target = e.target; |
| | | if (target.className == 'inner') |
| | | target = e.target.parentNode; |
| | | for (var id in popups) { |
| | | obj = popups[id]; |
| | | config = popupconfig[id]; |
| | |
| | | /** |
| | | * Update UI on window resize |
| | | */ |
| | | function resize() |
| | | function resize(e) |
| | | { |
| | | if (rcmail.env.task == 'mail' && (rcmail.env.action == 'show' || rcmail.env.action == 'preview')) { |
| | | layout_messageview(); |
| | | } |
| | | if (rcmail.env.task == 'mail' && rcmail.env.action == 'compose') { |
| | | layout_composeview(); |
| | | } |
| | | // resize in intervals to prevent lags and double onresize calls in Chrome (#1489005) |
| | | var interval = e ? 10 : 0; |
| | | |
| | | if (rcmail.resize_timeout) |
| | | window.clearTimeout(rcmail.resize_timeout); |
| | | |
| | | rcmail.resize_timeout = window.setTimeout(function() { |
| | | if (rcmail.env.task == 'mail') { |
| | | if (rcmail.env.action == 'show' || rcmail.env.action == 'preview') |
| | | layout_messageview(); |
| | | else if (rcmail.env.action == 'compose') |
| | | layout_composeview(); |
| | | } |
| | | |
| | | // make iframe footer buttons float if scrolling is active |
| | | $('body.iframe .footerleft').each(function(){ |
| | | var footer = $(this), |
| | | body = $(document.body), |
| | | floating = footer.hasClass('floating'), |
| | | overflow = body.outerHeight(true) > $(window).height(); |
| | | |
| | | if (overflow != floating) { |
| | | var action = overflow ? 'addClass' : 'removeClass'; |
| | | footer[action]('floating'); |
| | | body[action]('floatingbuttons'); |
| | | } |
| | | }); |
| | | }, interval); |
| | | } |
| | | |
| | | /** |
| | |
| | | function message_displayed(p) |
| | | { |
| | | // show a popup dialog on errors |
| | | if (p.type == 'error') { |
| | | if (p.type == 'error' && rcmail.env.task != 'login') { |
| | | if (me.message_timer) { |
| | | window.clearTimeout(me.message_timer); |
| | | } |
| | | if (!me.messagedialog) { |
| | | me.messagedialog = $('<div>').addClass('popupdialog'); |
| | | me.messagedialog = $('<div>').addClass('popupdialog').hide(); |
| | | } |
| | | |
| | | var pos = $(p.object).offset(); |
| | | me.messagedialog.dialog('close'); |
| | | me.messagedialog.html(p.message) |
| | | var msg = p.message, |
| | | pos = $(p.object).offset(); |
| | | pos.top -= (rcmail.env.task == 'login' ? 20 : 160); |
| | | |
| | | if (me.messagedialog.is(':visible')) |
| | | msg = me.messagedialog.html() + '<p>' + p.message + '</p>'; |
| | | |
| | | me.messagedialog.html(msg) |
| | | .dialog({ |
| | | resizable: false, |
| | | closeOnEscape: true, |
| | |
| | | close: function() { |
| | | me.messagedialog.dialog('destroy').hide(); |
| | | }, |
| | | position: ['center', pos.top - 160], |
| | | position: ['center', pos.top], |
| | | hide: { effect:'drop', direction:'down' }, |
| | | width: 420, |
| | | minHeight: 90 |
| | | }).show(); |
| | | |
| | | window.setTimeout(function(){ me.messagedialog.dialog('close'); }, Math.max(2000, p.timeout / 2)); |
| | | me.message_timer = window.setTimeout(function(){ me.messagedialog.dialog('close'); }, Math.max(2000, p.timeout / 2)); |
| | | } |
| | | } |
| | | |
| | |
| | | */ |
| | | function layout_messageview() |
| | | { |
| | | $('#messagecontent').css('top', ($('#messageheader').outerHeight() + 10) + 'px'); |
| | | $('#messagecontent').css('top', ($('#messageheader').outerHeight() + 1) + 'px'); |
| | | $('#message-objects div a').addClass('button'); |
| | | |
| | | if (!$('#attachment-list li').length) { |
| | |
| | | |
| | | function resize_leftcol(splitter) |
| | | { |
| | | if (splitter) |
| | | $('#quicksearchbar input').css('width', (splitter.pos - 70) + 'px'); |
| | | // STUB |
| | | } |
| | | |
| | | |
| | |
| | | var body = $('#composebody'), |
| | | form = $('#compose-content'), |
| | | bottom = $('#composeview-bottom'), |
| | | w, h; |
| | | w, h, bh, ovflw, btns = 0, |
| | | minheight = 300, |
| | | |
| | | bottom.css('height', (form.height() - bottom.position().top) + 'px'); |
| | | bh = (form.height() - bottom.position().top); |
| | | ovflw = minheight - bh; |
| | | btns = ovflw > -100 ? 0 : 40; |
| | | bottom.css('height', Math.max(minheight, bh) + 'px'); |
| | | form.css('overflow', ovflw > 0 ? 'auto' : 'hidden'); |
| | | |
| | | w = body.parent().width() - 5; |
| | | h = body.parent().height() - 16; |
| | |
| | | $('#composebody_tbl').width((w+8)+'px').height('').css('margin-top', '1px'); |
| | | $('#composebody_ifr').width((w+8)+'px').height((h-40)+'px'); |
| | | $('#googie_edit_layer').height(h+'px'); |
| | | // $('#composebodycontainer')[(btns ? 'addClass' : 'removeClass')]('buttons'); |
| | | // $('#composeformbuttons')[(btns ? 'show' : 'hide')](); |
| | | |
| | | var abooks = $('#directorylist'); |
| | | $('#compose-contacts .scroller').css('top', abooks.position().top + abooks.outerHeight()); |
| | |
| | | |
| | | function update_quota(p) |
| | | { |
| | | var y = p.total ? Math.ceil(p.percent / 100 * 20) * 24 : 0; |
| | | var step = 24, step_count = 20, |
| | | y = p.total ? Math.ceil(p.percent / 100 * step_count) * step : 0; |
| | | |
| | | // never show full-circle if quota is close to 100% but below. |
| | | if (p.total && y == step * step_count && p.percent < 100) |
| | | y -= step; |
| | | |
| | | $('#quotadisplay').css('background-position', '0 -'+y+'px'); |
| | | } |
| | | |
| | | |
| | | function enable_command(p) |
| | | { |
| | | if (p.command == 'reply-list') { |
| | | var label = rcmail.gettext(p.status ? 'replylist' : 'replyall'); |
| | | if (rcmail.env.action == 'preview') |
| | | $('a.button.replyall').attr('title', label); |
| | | else |
| | | $('a.button.reply-all').text(label).attr('title', label); |
| | | } |
| | | } |
| | | |
| | | |
| | | /** |
| | | * Register a popup menu |
| | | */ |
| | | function add_popup(popup, config) |
| | | { |
| | | var obj = popups[popup] = $('#'+popup); |
| | | obj.appendTo(document.body); // move it to top for proper absolute positioning |
| | | |
| | | if (obj.length) |
| | | popupconfig[popup] = $.extend(popupconfig[popup] || {}, config || {}); |
| | | } |
| | | |
| | | /** |
| | | * Trigger for popup menus |
| | |
| | | { |
| | | // auto-register menu object |
| | | if (config || !popupconfig[popup]) |
| | | popupconfig[popup] = $.extend(popupconfig[popup] || {}, config); |
| | | add_popup(popup, config); |
| | | |
| | | var visible = show_popupmenu(popup, show), |
| | | config = popupconfig[popup]; |
| | |
| | | { |
| | | var obj = popups[popup], |
| | | config = popupconfig[popup], |
| | | ref = $('#'+popup+'link'), |
| | | ref = $(config.link ? config.link : '#'+popup+'link'), |
| | | above = config.above; |
| | | |
| | | if (!obj) { |
| | |
| | | else if (config.toggle && show && obj.is(':visible')) |
| | | show = false; |
| | | |
| | | if (show && ref) { |
| | | if (show && ref.length) { |
| | | var parent = ref.parent(), |
| | | win = $(window), |
| | | pos; |
| | |
| | | var button = $(e.target), |
| | | frame = $('#mailpreviewframe'), |
| | | visible = !frame.is(':visible'), |
| | | splitter = mailviewsplit.pos || parseInt(bw.get_cookie('mailviewsplitter') || 320), |
| | | splitter = mailviewsplit.pos || parseInt(rcmail.get_cookie('mailviewsplitter') || 320), |
| | | topstyles, bottomstyles, uid; |
| | | |
| | | frame.toggle(); |
| | | button.removeClass().addClass(visible ? 'enabled' : 'closed'); |
| | | |
| | | if (visible) { |
| | | $('#mailview-top').css({ bottom:'auto' }); |
| | | $('#mailview-top').removeClass('fullheight').css({ bottom:'auto' }); |
| | | $('#mailview-bottom').css({ height:'auto' }); |
| | | |
| | | rcmail.env.contentframe = 'messagecontframe'; |
| | |
| | | rcmail.env.contentframe = null; |
| | | rcmail.show_contentframe(false); |
| | | |
| | | $('#mailview-top').css({ height:'auto', bottom:'28px' }); |
| | | $('#mailview-top').addClass('fullheight').css({ height:'auto', bottom:'28px' }); |
| | | $('#mailview-bottom').css({ top:'auto', height:'26px' }); |
| | | |
| | | if (mailviewsplit.handle) |
| | |
| | | /** |
| | | * Switch between short and full headers display in message preview |
| | | */ |
| | | function toggle_preview_headers(button) |
| | | function toggle_preview_headers() |
| | | { |
| | | $('#preview-shortheaders').toggle(); |
| | | var full = $('#preview-allheaders').toggle(), |
| | |
| | | |
| | | |
| | | /**** popup callbacks ****/ |
| | | |
| | | function menu_open(p) |
| | | { |
| | | if (p && p.props && p.props.menu == 'attachmentmenu') |
| | | show_popupmenu('attachmentmenu'); |
| | | else |
| | | show_listoptions(); |
| | | } |
| | | |
| | | function menu_save(prop) |
| | | { |
| | | save_listoptions(); |
| | | } |
| | | |
| | | function searchmenu(show) |
| | | { |
| | |
| | | } |
| | | } |
| | | |
| | | function attachmentmenu(elem) |
| | | { |
| | | var id = elem.parentNode.id.replace(/^attach/, ''); |
| | | |
| | | $('#attachmenuopen').unbind('click').attr('onclick', '').click(function(e) { |
| | | return rcmail.command('open-attachment', id, this); |
| | | }); |
| | | |
| | | $('#attachmenudownload').unbind('click').attr('onclick', '').click(function() { |
| | | rcmail.command('download-attachment', id, this); |
| | | }); |
| | | |
| | | popupconfig.attachmentmenu.link = elem; |
| | | rcmail.command('menu-open', {menu: 'attachmentmenu', id: id}); |
| | | } |
| | | |
| | | function spellmenu(show) |
| | | { |
| | |
| | | $('input[name="sort_col"][value="'+rcmail.env.sort_col+'"]').prop('checked', true); |
| | | $('input[name="sort_ord"][value="DESC"]').prop('checked', rcmail.env.sort_order == 'DESC'); |
| | | $('input[name="sort_ord"][value="ASC"]').prop('checked', rcmail.env.sort_order != 'DESC'); |
| | | $('input[name="view"][value="thread"]').prop('checked', rcmail.env.threading ? true : false); |
| | | $('input[name="view"][value="list"]').prop('checked', rcmail.env.threading ? false : true); |
| | | |
| | | // list columns |
| | | var found, cols = $('input[name="list_col[]"]'); |
| | | for (var i=0; i < cols.length; i++) { |
| | | if (cols[i].value != 'from') { |
| | | found = $.inArray(cols[i].value, rcmail.env.coltypes) != -1; |
| | | } |
| | | else { |
| | | found = ($.inArray('from', rcmail.env.coltypes) != -1 |
| | | || $.inArray('to', rcmail.env.coltypes) != -1); |
| | | } |
| | | $(cols[i]).prop('checked', found); |
| | | } |
| | | // set checkboxes |
| | | $('input[name="list_col[]"]').each(function() { |
| | | $(this).prop('checked', $.inArray(this.value, rcmail.env.coltypes) != -1); |
| | | }); |
| | | |
| | | $dialog.dialog({ |
| | | modal: true, |
| | |
| | | close: function() { |
| | | $dialog.dialog('destroy').hide(); |
| | | }, |
| | | width: 650 |
| | | minWidth: 500, |
| | | width: $dialog.width()+25 |
| | | }).show(); |
| | | } |
| | | |
| | |
| | | |
| | | var sort = $('input[name="sort_col"]:checked').val(), |
| | | ord = $('input[name="sort_ord"]:checked').val(), |
| | | thread = $('input[name="view"]:checked').val(), |
| | | cols = $('input[name="list_col[]"]:checked') |
| | | .map(function(){ return this.value; }).get(); |
| | | |
| | | rcmail.set_list_options(cols, sort, ord, thread == 'thread' ? 1 : 0); |
| | | rcmail.set_list_options(cols, sort, ord, rcmail.env.threading); |
| | | } |
| | | |
| | | |
| | |
| | | }); |
| | | } |
| | | |
| | | function push_contactgroup(p) |
| | | { |
| | | // lets the contacts list swipe to the left, nice! |
| | | var table = $('#contacts-table'), |
| | | scroller = table.parent().css('overflow', 'hidden'); |
| | | |
| | | table.clone() |
| | | .css({ position:'absolute', top:'0', left:'0', width:table.width()+'px', 'z-index':10 }) |
| | | .appendTo(scroller) |
| | | .animate({ left: -(table.width()+5) + 'px' }, 300, 'swing', function(){ |
| | | $(this).remove(); |
| | | scroller.css('overflow', 'auto') |
| | | }); |
| | | } |
| | | |
| | | function pop_contactgroup(p) |
| | | { |
| | | // lets the contacts list swipe to the left, nice! |
| | | var table = $('#contacts-table'), |
| | | scroller = table.parent().css('overflow', 'hidden'), |
| | | clone = table.clone().appendTo(scroller); |
| | | |
| | | table.css({ position:'absolute', top:'0', left:-(table.width()+5) + 'px', width:table.width()+'px', height:table.height()+'px', 'z-index':10 }) |
| | | .animate({ left:'0' }, 300, 'linear', function(){ |
| | | clone.remove(); |
| | | $(this).css({ position:'relative', left:'0', width:'100%', height:'auto', 'z-index':1 }); |
| | | scroller.css('overflow', 'auto') |
| | | }); |
| | | } |
| | | |
| | | function show_uploadform() |
| | | { |
| | |
| | | $dialog.dialog('close'); |
| | | return; |
| | | } |
| | | |
| | | |
| | | // add icons to clone file input field |
| | | if (rcmail.env.action == 'compose' && !$dialog.data('extended')) { |
| | | $('<a>') |
| | |
| | | // Select/unselect tab |
| | | $('#tab'+idx).toggleClass('selected', idx==index); |
| | | }); |
| | | |
| | | resize(); |
| | | } |
| | | |
| | | /** |
| | |
| | | this.delay = 500; |
| | | |
| | | this.top |
| | | .mouseenter(function() { ref.ts = window.setTimeout(function() { ref.scroll('down'); }, ref.delay); }) |
| | | .mouseenter(function() { if (rcmail.drag_active) ref.ts = window.setTimeout(function() { ref.scroll('down'); }, ref.delay); }) |
| | | .mouseout(function() { if (ref.ts) window.clearTimeout(ref.ts); }); |
| | | |
| | | this.bottom |
| | | .mouseenter(function() { ref.ts = window.setTimeout(function() { ref.scroll('up'); }, ref.delay); }) |
| | | .mouseenter(function() { if (rcmail.drag_active) ref.ts = window.setTimeout(function() { ref.scroll('up'); }, ref.delay); }) |
| | | .mouseout(function() { if (ref.ts) window.clearTimeout(ref.ts); }); |
| | | |
| | | this.scroll = function(dir) |
| | |
| | | $(window).resize(onResize); |
| | | |
| | | // read saved position from cookie |
| | | var cookie = bw.get_cookie(this.id); |
| | | var cookie = rcmail.get_cookie(this.id); |
| | | if (cookie && !isNaN(cookie)) { |
| | | this.pos = parseFloat(cookie); |
| | | this.resize(); |
| | |
| | | { |
| | | var exp = new Date(); |
| | | exp.setYear(exp.getFullYear() + 1); |
| | | bw.set_cookie(this.id, this.pos, exp); |
| | | rcmail.set_cookie(this.id, this.pos, exp); |
| | | }; |
| | | |
| | | } // end class rcube_splitter |