From 2ef32768ba9e312ca52b475b6de5067259c5d116 Mon Sep 17 00:00:00 2001 From: Simon Lydell Date: Thu, 2 Jun 2016 17:21:45 +0200 Subject: [PATCH] Remove repeated word in a comment --- extension/lib/commands-frame.coffee | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/extension/lib/commands-frame.coffee b/extension/lib/commands-frame.coffee index 6366098..8a1752a 100644 --- a/extension/lib/commands-frame.coffee +++ b/extension/lib/commands-frame.coffee @@ -76,10 +76,10 @@ commands.scroll = (args) -> {vim} = args return unless activeElement = utils.getActiveElement(vim.content) element = - # If no element is focused on the page, the the active element is the - # topmost ``, and blurring it is a no-op. If it is scrollable, it - # means that you can’t blur it in order to scroll ``. Therefore it may - # only be scrolled if it has been explicitly focused. + # If no element is focused on the page, the active element is the topmost + # ``, and blurring it is a no-op. If it is scrollable, it means that + # you can’t blur it in order to scroll ``. Therefore it may only be + # scrolled if it has been explicitly focused. if vim.state.scrollableElements.has(activeElement) and (activeElement != vim.content.document.body or vim.state.explicitBodyFocus) -- 2.39.3