Changeset 13
- Timestamp:
- 06/10/09 01:13:35 (3 years ago)
- File:
-
- 1 edited
-
user.js/side_buzztter.user.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
user.js/side_buzztter.user.js
r12 r13 13 13 // 14 14 // 更新履歴 15 // [2009-06-10] 0.9.1 Firefox でクラウド表示されない問題を修正 15 16 // [2009-06-08] 0.9 最初の公開バージョン 16 17 // 17 18 // 既知の問題 18 // * Firefox の Greasemonkey ではクラウド表示されない19 19 // * リストの表示・非表示ができない 20 20 // … … 121 121 122 122 e.setAttribute('type', 'text/css'); 123 e.innerText = text; 123 124 try { 125 // Firefox の場合 126 e.innerHTML = text; 127 } catch(err) { 128 // Safari の場合 129 e.innerText = text; 130 } 124 131 125 132 return e; … … 261 268 262 269 // style要素の追加 263 // ToDo: Firefox でうまくいかないので修正すること264 270 menu.appendChild(style('.cloud ul.sidebar-menu { padding-left:10px; } .cloud ul.sidebar-menu li, .cloud ul.sidebar-menu li a { display:inline; width:auto; padding:2px; } .cloud ul.sidebar-menu li a span { width:auto; }')); 265 271 }
Note: See TracChangeset
for help on using the changeset viewer.
