in reply to Perlmonks AJAX Voting
I added the following patch in the appropriate place so that the ++ and -- don't run together:
up_vote.innerHTML = "++"; voting_both.appendChild(up_vote); + + var spacer = document.createElement("span"); + spacer.innerHTML = " "; + voting_both.appendChild(spacer); var down_vote = document.createElement('a'); down_vote.setAttribute("href",'javascript:void(0);');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perlmonks AJAX Voting
by eric256 (Parson) on Dec 17, 2007 at 17:26 UTC |