From 1c7536b7d89d8e8e1e881e04a19c6c1600b50898 Mon Sep 17 00:00:00 2001 From: trochr Date: Thu, 25 Apr 2019 10:25:25 +0200 Subject: [PATCH] Fix a missing parenthesis --- smartscroll.js | 1 + 1 file changed, 1 insertion(+) diff --git a/smartscroll.js b/smartscroll.js index 60fe8f2..67b091c 100644 --- a/smartscroll.js +++ b/smartscroll.js @@ -260,6 +260,7 @@ function deepCss(who, css) { val = dv.getComputedStyle(who, "").getPropertyValue(css); } } + } } return val || ""; }