Browse Source

Make inline.js work in mod panel

Conflicts:
	inc/instance-config.php
pull/40/head
8chan 10 years ago
committed by czaks
parent
commit
1f28316fca
  1. 8
      js/inline.js

8
js/inline.js

@ -1,4 +1,4 @@
;(function() {
onready(function() {
var App = {
cache: {},
get: function(url, cb) {
@ -60,7 +60,9 @@
targetOP = srcOP
} else {
node = $(this)
targetOP = this.pathname.match(/(\d+).html/)[1]
var to_search = inMod ? this.search : this.pathname;
targetOP = to_search.match(/(\d+).html/)[1]
}
var link = {
@ -136,4 +138,4 @@
$('.body a:not([rel]), .mentioned a')
.attr('onclick', null)// XXX disable highlightReply
.click(inline)
})()
})

Loading…
Cancel
Save