this._updatePrefs('dimp_splitbar', this.viewport.getPageSize());
}.bind(this),
onSplitBarEnd: function() {
- $('msgBodyCover').hide();
+ $('messageBodyCover').hide();
},
onSplitBarStart: function() {
- $('msgBodyCover').clonePosition('msgBody').show();
+ $('messageBodyCover').clonePosition('messageBody').show();
},
onWait: function() {
if ($('dimpmain_folder').visible()) {
$('msgLogInfo').hide();
}
- $('msgBody').update(r.msgtext);
+ $('messageBody').update(r.msgtext);
this.loadingImg('msg', false);
$('previewInfo').hide();
$('previewPane').scrollTop = 0;
$('normalfolders').setStyle({ width: tmp + 'px' });
$('dimpmain').setStyle({ width: tmp1 + 'px' });
$('msglist').setStyle({ width: (tmp1 - 5) + 'px' });
- $('msgBody').setStyle({ width: (tmp1 - 25) + 'px' });
+ $('messageBody').setStyle({ width: (tmp1 - 25) + 'px' });
tmp = $('dimpmain_portal').down('IFRAME');
if (tmp) {
this._resizeIE6Iframe(tmp);
DimpBase.msgSelect(id, args);
}
- $('msgBodyCover').clonePosition('msgBody').show();
+ $('messageBodyCover').clonePosition('messageBody').show();
},
onEnd: function(d, e) {
if (d.selectIfNoDrag && !d.wasDragged) {
DimpBase.msgSelect(d.element.id, { right: e.isRightClick() });
}
- $('msgBodyCover').hide();
+ $('messageBodyCover').hide();
}
};
d.opera = true;
} else {
d.opera = false;
- $('msgBodyCover').clonePosition('msgBody').show();
+ $('messageBodyCover').clonePosition('messageBody').show();
}
},
onDrag: function(d, e) {
$('folderopts').show();
$('dropbase').hide();
}
- $('msgBodyCover').hide();
+ $('messageBodyCover').hide();
}
}
};
Effect.toggle(tmp, 'blind', {
afterFinish: function() {
this.resizeWindow();
- $('msgData').down('DIV.msgBody').setStyle({ overflowY: 'auto' })
+ $('msgData').down('DIV.messageBody').setStyle({ overflowY: 'auto' })
}.bind(this),
beforeSetup: function() {
- $('msgData').down('DIV.msgBody').setStyle({ overflowY: 'hidden' })
+ $('msgData').down('DIV.messageBody').setStyle({ overflowY: 'hidden' })
},
duration: 0.2,
queue: {
resizeWindow: function()
{
- var mb = $('msgData').down('DIV.msgBody');
+ var mb = $('msgData').down('DIV.messageBody');
mb.setStyle({ height: (document.viewport.getHeight() - mb.cumulativeOffset()[1] - parseInt(mb.getStyle('paddingTop'), 10) - parseInt(mb.getStyle('paddingBottom'), 10)) + 'px' });
},