From 3515fdabe713fc9143a833d0f6a889ce150142aa Mon Sep 17 00:00:00 2001 From: sourcerect Date: Thu, 4 Jun 2015 04:19:04 -0400 Subject: [PATCH] Fix tab freeze when inlining Fixes ctrlcctrlv/infinity#451 --- js/inline.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/inline.js b/js/inline.js index 686a540a..e581b79d 100644 --- a/js/inline.js +++ b/js/inline.js @@ -139,7 +139,7 @@ $(document).ready(function() { if (App.options.get('useInlining')) { var assign_inline = function() { - $('.body a[href*="'+location.pathname+'"]:not([rel]):not(.toolong a), .mentioned a') + $('.body a[href*="'+location.pathname+'"]').not('[rel]').not('.toolong > a').add('.mentioned a') .attr('onclick', null)// XXX disable highlightReply .off('click') .click(inline)