/*
* @title Expand Hatena::Star
* @description Expand Hateha::Star handle colored stars
* @include http://*
* @license MIT License http://nrm.mit-license.org/2012
* @require
*/
// http://os0x.g.hatena.ne.jp/os0x/20080502/1209724672
(function(Hatena) {
if (typeof Hatena === 'undefined') return;
Hatena.Star.EntryLoader.entries.forEach(function (entry) {
entry.stars.some(function (star) {
if(star && star.showInnerStars) {
star.showInnerStars();
return true; // rustic
}
});
});
})(window.Hatena);