[IMP]mail: scroll loading

bzr revid: chm@openerp.com-20121015160648-b80tyipjyv2le2g4
This commit is contained in:
Christophe Matthieu 2012-10-15 18:06:48 +02:00
parent f71d09a7db
commit 29183b9161
1 changed files with 2 additions and 2 deletions

View File

@ -899,11 +899,11 @@ openerp.mail = function(session) {
on_scroll: function(event){
if(event)event.stopPropagation();
var last=this.messages[0];
if(last && last.type=="expandable"){
if(last && last.datasets.type=="expandable"){
var pos = last.$el.position();
if(pos.top){
/* bottom of the screen */
var bottom = $(window).scrollTop()+$(window).height()+100;
var bottom = $(window).scrollTop()+$(window).height()+200;
if(bottom - pos.top > 0){
last.on_expandable();
}