forked from leftypol/leftypol
a Fixed delete by IP, plus a bunch of small stuff
This commit is contained in:
parent
0346862645
commit
c34ea2e3af
5 changed files with 63 additions and 9 deletions
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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue