From 9cce390eade4eba48115e3eceeb363cab2532752 Mon Sep 17 00:00:00 2001 From: Thibaut Courouble Date: Sun, 17 Sep 2017 11:25:05 -0400 Subject: [PATCH] Fix alt+o shortcut not preventing default in Firefox --- assets/javascripts/views/content/entry_page.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/javascripts/views/content/entry_page.coffee b/assets/javascripts/views/content/entry_page.coffee index 130104a5..beae4d77 100644 --- a/assets/javascripts/views/content/entry_page.coffee +++ b/assets/javascripts/views/content/entry_page.coffee @@ -154,5 +154,5 @@ class app.views.EntryPage extends app.View onAltO: => return unless link = @find('._attribution:last-child ._attribution-link') - $.popup(link.href + location.hash) + @delay -> $.popup(link.href + location.hash) return