| | |
| | | $('#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:6, offset:-18 }); |
| | | orientation:'h', relative:true, start:310, min:150, size:12, offset:4 }); |
| | | if (previewframe) |
| | | mailviewsplit.init(); |
| | | |
| | |
| | | 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') { |
| | |
| | | } |
| | | |
| | | var select = $(this), |
| | | height = Math.max(select.height(), 24) - 2, |
| | | height = Math.max(select.height(), 26) - 2, |
| | | width = select.width() - 22, |
| | | title = $('option', this).first().text(); |
| | | |
| | |
| | | |
| | | // don't use $(window).resize() due to some unwanted side-effects |
| | | window.onresize = resize; |
| | | resize(); |
| | | } |
| | | |
| | | /** |
| | |
| | | if (rcmail.env.task == 'mail' && 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'); |
| | | } |
| | | }) |
| | | |
| | | } |
| | | |
| | | /** |
| | |
| | | function message_displayed(p) |
| | | { |
| | | // show a popup dialog on errors |
| | | if (p.type == 'error') { |
| | | if (p.type == 'error' && rcmail.env.task != 'login') { |
| | | if (!me.messagedialog) { |
| | | me.messagedialog = $('<div>').addClass('popupdialog'); |
| | | } |
| | |
| | | |
| | | function resize_leftcol(splitter) |
| | | { |
| | | if (0&&splitter) |
| | | $('#quicksearchbar input').css('width', (splitter.pos - 70) + 'px'); |
| | | // STUB |
| | | } |
| | | |
| | | |
| | |
| | | $('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, |