Browse Source

Fix tab freeze when inlining

Fixes ctrlcctrlv/infinity#451
pull/40/head
sourcerect 9 years ago
committed by czaks
parent
commit
3515fdabe7
  1. 2
      js/inline.js

2
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)

Loading…
Cancel
Save