This commit is contained in:
Erik Pellikka 2016-02-23 15:51:01 +02:00 committed by Morris Jobke
parent 18b7b61f06
commit e7366213f5
No known key found for this signature in database
GPG key ID: 9CE5ED29E7FCD38A

View file

@ -408,13 +408,13 @@ var dragOptions={
var top = $(window).scrollTop() + scrollArea;
if (event.pageY < top){
scrollTop: $("#app-content").scrollTop(currentScrollTop-=10);
$("#app-content").scrollTop(currentScrollTop-=10);
}
if (event.pageY > bottom)
{
scrollTop: $("#app-content").scrollTop(currentScrollTop+=10);
$("#app-content").scrollTop(currentScrollTop+=10);
}