Browse Source

js/expand.js

pull/40/head
Czterooki 11 years ago
parent
commit
dfddeb30da
  1. 4
      js/expand.js

4
js/expand.js

@ -17,12 +17,12 @@ $(document).ready(function(){
$('div.post.op span.omitted').each(function() {
$(this)
.html($(this).text().replace(/Click reply to view\./, '<a href="javascript:void(0)">Click to expand</a>.'))
.html($(this).text().replace(/Click reply to view\.|Kliknij Odpowiedź aby zobaczyć\./, '<a href="javascript:void(0)">Click to expand</a>.'))
.find('a').click(function() {
var thread = $(this).parent().parent().parent();
var id = thread.attr('id').replace(/^thread_/, '');
$.ajax({
url: thread.find('p.intro a.post_no:first').attr('href'),
url: thread.find('p.intro a.post_no.p1:first').attr('href'),
context: document.body,
success: function(data) {
var last_expanded = false;

Loading…
Cancel
Save