diff options
author | Erik Pellikka <erik@pellikka.org> | 2016-02-23 09:24:01 -0500 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-05-13 21:01:13 +0200 |
commit | b94252e479a95490e4382f4f20c8e758f0c07689 (patch) | |
tree | aafebf42edfa2813dee2c022f886d6cfe61c7978 /apps/files | |
parent | 74dfc63b9ac46c29de954563e6b2ff8ed2d06ccd (diff) | |
download | nextcloud-server-b94252e479a95490e4382f4f20c8e758f0c07689.tar.gz nextcloud-server-b94252e479a95490e4382f4f20c8e758f0c07689.zip |
code style fix
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/files.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js index dc3fba9919e..3e7fcf3372b 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -414,9 +414,8 @@ var dragOptions={ ); } - else if (event.pageY > bottom) - { - + else if (event.pageY > bottom) { + $(scrollingArea).scrollTop( currentScrollTop += 10 ); |