summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Pellikka <erik@pellikka.org>2016-02-23 15:51:01 +0200
committerMorris Jobke <hey@morrisjobke.de>2016-05-13 21:01:13 +0200
commite7366213f5527f117ccb7a6332eb92bcf9ccaf9b (patch)
treef6412d41724ace9889215cea2d597fa3933c39e8
parent18b7b61f06cf4ea2015ba93b6ddf1e31d1a5f2af (diff)
downloadnextcloud-server-e7366213f5527f117ccb7a6332eb92bcf9ccaf9b.tar.gz
nextcloud-server-e7366213f5527f117ccb7a6332eb92bcf9ccaf9b.zip
typo fix
-rw-r--r--apps/files/js/files.js4
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);
}