소스 검색

Added missing curly brackets in post-filter.js

pull/47/head^2
Mark Taiwan czaks 8 년 전
부모
커밋
c2e3ff162f
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      js/post-filter.js

+ 2
- 1
js/post-filter.js 파일 보기

@@ -19,9 +19,10 @@ if (active_page === 'thread' || active_page === 'index' || active_page === 'cata
}

function initList(list, boardId, threadId) {
if (typeof list.postFilter[boardId] == 'undefined')
if (typeof list.postFilter[boardId] == 'undefined') {
list.postFilter[boardId] = {};
list.nextPurge[boardId] = {};
}
if (typeof list.postFilter[boardId][threadId] == 'undefined') {
list.postFilter[boardId][threadId] = [];
}


불러오는 중...
취소
저장