/*
* @title 折りたたみトラバ全開
* @description はてな匿名ダイアリーで全ての折りたたまれたトラックバックを開く。再クリックで全て閉じる。
* @description 参考ページ1 http://blog.tofu-kun.org/070920122122.php
* @description 参考ページ2 http://d.hatena.ne.jp/smallplace/20130101/1357056738
* @license MIT License
*/
javascript:(function(){
var parents = 'toggle-image-';
selectObj = document.getElementsByClassName('icon');
matchObj= new RegExp(parents);
for(i=0; i < selectObj.length; i++){
if(selectObj[i].id.match(matchObj)){
var toggle = selectObj[i].parentNode;
toggle.onclick();
}
}
})();