diff options
author | Erik Pellikka <erik@pellikka.org> | 2016-02-23 15:51:01 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-05-13 21:01:13 +0200 |
commit | e7366213f5527f117ccb7a6332eb92bcf9ccaf9b (patch) | |
tree | f6412d41724ace9889215cea2d597fa3933c39e8 | |
parent | 18b7b61f06cf4ea2015ba93b6ddf1e31d1a5f2af (diff) | |
download | nextcloud-server-e7366213f5527f117ccb7a6332eb92bcf9ccaf9b.tar.gz nextcloud-server-e7366213f5527f117ccb7a6332eb92bcf9ccaf9b.zip |
typo fix
-rw-r--r-- | apps/files/js/files.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 9694f0f11b2..77dd4a2db25 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -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); } |