typo fix
This commit is contained in:
parent
18b7b61f06
commit
e7366213f5
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue