From: Daniel Carl Date: Sun, 7 May 2017 20:39:59 +0000 (+0200) Subject: Fix wrong js to scroll to x percent of page. X-Git-Url: https://git.owens.tech/style.css/style.css/git?a=commitdiff_plain;h=6861e627ee63589cd8775daa85632dcfaf43c500;p=vimb.git Fix wrong js to scroll to x percent of page. --- diff --git a/src/normal.c b/src/normal.c index 156ef52..d96513d 100644 --- a/src/normal.c +++ b/src/normal.c @@ -688,7 +688,7 @@ static VbResult normal_scroll(Client *c, const NormalCmdInfo *info) case 'G': if (info->count) { js = g_strdup_printf( - "window.scroll(window.scrollX, %d * (1 + (document.height - window.innerHeight) / 100));", + "window.scroll(window.scrollX, %d * ((document.documentElement.scrollHeight - window.innerHeight) / 100));", info->count); ext_proxy_eval_script(c, js, NULL); g_free(js);