瀏覽代碼

Don't remove post selection checkbox for reporting when hiding threads

pull/89/head
Benjamin Southall 7 年之前
父節點
當前提交
9c189eff4f
共有 1 個檔案被更改,包括 2 行新增1 行删除
  1. +2
    -1
      js/hide-threads.js

+ 2
- 1
js/hide-threads.js 查看文件

@@ -58,7 +58,8 @@ $(document).ready(function(){
var hidden_div = thread_container.find('div.post.op > p.intro').clone();
hidden_div.addClass('thread-hidden');
hidden_div.find('a[href]:not([href$=".html"]),input').remove();
//hidden_div.find('a[href]:not([href$=".html"]),input').remove();
hidden_div.find('a[href]:not([href$=".html"])').remove();
hidden_div.html(hidden_div.html().replace(' [] ', ' '));
hidden_div.html(hidden_div.html().replace(' [] ', ' '));


Loading…
取消
儲存