From 9ac4dc9f81d0cc66ed67adf9ec247076c8ad67ed Mon Sep 17 00:00:00 2001 From: gorhill Date: Fri, 7 Jul 2017 11:23:24 -0400 Subject: [PATCH] fix #2768 --- src/js/popup.js | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/src/js/popup.js b/src/js/popup.js index 696cf5afe26fb..41f6983438380 100644 --- a/src/js/popup.js +++ b/src/js/popup.js @@ -1009,20 +1009,7 @@ var onHideTooltip = function() { uDom('body').on('mouseenter', '[data-tip]', onShowTooltip) .on('mouseleave', '[data-tip]', onHideTooltip); - // https://github.com/gorhill/uBlock/issues/2734 - // Workaround until fixed in Firefox Nightly. - if ( - self.chrome instanceof Object === false || - typeof chrome.runtime.getBrowserInfo !== 'function' - ) { - uDom('a[href]').on('click', gotoURL); - } else { - chrome.runtime.getBrowserInfo().then(function(info) { - if ( info.name !== 'Firefox' ) { - uDom('a[href]').on('click', gotoURL); - } - }); - } + uDom('a[href]').on('click', gotoURL); })(); /******************************************************************************/