fix typo+dom not ready+unclose div tag

This commit is contained in:
Nawawi Jamili
2013-11-28 16:47:50 +08:00
parent 219b7e19eb
commit 5b725b8348
8 changed files with 39 additions and 39 deletions

View File

@ -62,9 +62,9 @@ function filter_match(str, _cname, _match) {
function filter_match_box(show) {
show = show || true;
if ( true ) {
document.getElementsBy('filter_box').style.display='';
document.getElementById('filter_box').style.display='';
} else {
document.getElementsBy('filter_box').style.display='none';
document.getElementById('filter_box').style.display='none';
}
};