diff options
author | teramako | 2008-04-21 14:52:43 +0000 |
---|---|---|
committer | teramako | 2008-04-21 14:52:43 +0000 |
commit | 8202673e83f9d3c4562e95b84cd99af2b234d74b (patch) | |
tree | bf2fb4e2d79d8bf4c29ab635c36097d07eea2baf | |
parent | 4151b9ed9a1a0514b01bb1e4a195076039a3dbdf (diff) | |
download | vimperator-plugins-8202673e83f9d3c4562e95b84cd99af2b234d74b.tar.bz2 |
/lang/javascript/vimperator-plugins/trunk/gmail_biff.js:アイコン挿入位置をセキュリティボタンの後ろへ変更
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@10094 d0d07461-0603-4401-acd4-de1884942a52
-rw-r--r-- | gmail_biff.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gmail_biff.js b/gmail_biff.js index 891eaf3..20b4a60 100644 --- a/gmail_biff.js +++ b/gmail_biff.js @@ -55,7 +55,7 @@ gmailBiffTip.appendChild(gmailBiffText);
document.getElementById('status-bar')
- .insertBefore(gmailBiffIcon,document.getElementById('security-button'));
+ .insertBefore(gmailBiffIcon,document.getElementById('security-button').nextSibling);
document.getElementById('status-bar').appendChild(gmailBiffTip);
setTimeout(function() {
|