(no subject)
Apr. 15th, 2011 09:25 am![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
I miss the stars in LJ notes. I don't have or want a paid account in LJ. I installed Livejournal Addons, and disabled nearly everything but the notes part. But, it only adds the title attribute for users with notes, it doesn't add a star.
So, I added one.
* Install the addon, obviously.
* Go to: [profile]\extensions\homo_nudus@livejournal.com\chrome\content
* Open: livejournal_addons.js
* Go to line 2807, the else part of the if/then statement. You should just see something like this:
* Change that out to:
Originally posted on Dreamwidth. Number of comments so far:
So, I added one.
* Install the addon, obviously.
* Go to: [profile]\extensions\homo_nudus@livejournal.com\chrome\content
* Open: livejournal_addons.js
* Go to line 2807, the else part of the if/then statement. You should just see something like this:
} else { curLink.setAttribute("title", tip); }
* Change that out to:
} else { curLink.setAttribute("title", tip); if (curLink.getAttribute("href").substr(-7) != "profile") { curLink.parentNode.appendChild(document.createTextNode("*")); } }
Originally posted on Dreamwidth. Number of comments so far: