From 74dfc63b9ac46c29de954563e6b2ff8ed2d06ccd Mon Sep 17 00:00:00 2001 From: Erik Pellikka Date: Tue, 23 Feb 2016 09:22:58 -0500 Subject: [PATCH] code style fix --- apps/files/js/files.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 028ff94b88..dc3fba9919 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -409,13 +409,17 @@ var dragOptions={ var top = $(window).scrollTop() + scrollArea; if (event.pageY < top){ - $(scrollingArea).scrollTop(currentScrollTop-=10); + $(scrollingArea).scrollTop( + currentScrollTop -= 10 + ); } else if (event.pageY > bottom) { - $(scrollingArea).scrollTop(currentScrollTop+=10); + $(scrollingArea).scrollTop( + currentScrollTop += 10 + ); }