a Fixed delete by IP, plus a bunch of small stuff
This commit is contained in:
7
main.js
7
main.js
@@ -6,8 +6,11 @@ function highlightReply(id)
|
||||
if (divs[i].className.indexOf('post') != -1)
|
||||
divs[i].className = divs[i].className.replace(/highlighted/, '');
|
||||
}
|
||||
if (id)
|
||||
document.getElementById('reply_'+id).className += ' highlighted';
|
||||
if (id) {
|
||||
post = document.getElementById('reply_'+id);
|
||||
if(post)
|
||||
post.className += ' highlighted';
|
||||
}
|
||||
}
|
||||
function focusId(id)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user