Skip to content

Commit

Permalink
Insert the link correctly in posts you own
Browse files Browse the repository at this point in the history
  • Loading branch information
ajasmin committed Feb 11, 2012
1 parent 9bf42a9 commit c94dd14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion userscript.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function retweet_link(node, href) {
return false;
};
node.parentNode.insertBefore(a, node.nextSibling);
node.parentNode.insertBefore(document.createTextNode(" | "), node.parentNode.lastChild);
node.parentNode.insertBefore(document.createTextNode(" | "), a.nextSibling);
}

function add_links() {
Expand Down

0 comments on commit c94dd14

Please sign in to comment.