Browse Source

Merge pull request #166 from joosera/master

Fix js/expand.js
pull/40/head
Michael 10 years ago
parent
commit
de395fcc36
  1. 3
      js/expand.js

3
js/expand.js

@ -20,7 +20,7 @@ $(document).ready(function(){
var do_expand = function() {
$(this)
.html($(this).text().replace(_("Click reply to view."), '<a href="javascript:void(0)">'+_("Click to expand")+'</a>.'))
.html($(this).html().replace(_("Click reply to view."), '<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_/, '');
@ -64,3 +64,4 @@ $(document).ready(function(){
}
});
});
});

Loading…
Cancel
Save