Changeset 3359

Show
Ignore:
Timestamp:
12/20/07 17:46:20 (5 years ago)
Author:
cho45
Message:

lang/javascript/userscripts/hatena.haiku.expandrepliestree.user.js:

展開されたエントリの expand link は消すように

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/javascript/userscripts/hatena.haiku.expandrepliestree.user.js

    r3358 r3359  
    3232                // remove duplicated star elements 
    3333                $X("../*/div/div[@class='title']/span[@class='hatena-star-comment-container' or @class='hatena-star-star-container']", entry).forEach(function (e) { 
     34                        e.parentNode.removeChild(e); 
     35                }); 
     36                // remove expand link 
     37                $X(".//span[@class='expand']", entry).forEach(function (e) { 
    3438                        e.parentNode.removeChild(e); 
    3539                });