diff options
author | trapezoid | 2008-03-24 12:10:17 +0000 |
---|---|---|
committer | trapezoid | 2008-03-24 12:10:17 +0000 |
commit | bd3b1621e9aec2414a31822e58ee1497f77ca9f8 (patch) | |
tree | 82a55a0cd1e65a24cd546122ad058d4d59a43b42 | |
parent | 9f0fc3fa564521fb62be9442d9593b511504aadc (diff) | |
download | vimperator-plugins-bd3b1621e9aec2414a31822e58ee1497f77ca9f8.tar.bz2 |
lang/javascript/vimperator-plugins/twitterView.js: コマンドラインバーに表示位置を移動
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@8344 d0d07461-0603-4401-acd4-de1884942a52
-rwxr-xr-x | twitterView.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/twitterView.js b/twitterView.js index 5571c14..9224b42 100755 --- a/twitterView.js +++ b/twitterView.js @@ -46,11 +46,12 @@ hbox.setAttribute('id','statusbar-twitter-timeline');
//document.getElementById('status-bar').insertBefore(hbox,document.getElementById('statusbar-display'));
- document.getElementById('liberator-commandline').appendChild(hbox);
- document.getElementById('liberator-commandline').addEventListener("focus",function(e){
+ //document.getElementById('liberator-commandline').appendChild(hbox);
+ document.getElementById('liberator-commandline').insertBefore(hbox,document.getElementById('liberator-commandline-command'));
+ document.getElementById('liberator-commandline-command').addEventListener("focus",function(e){
hbox.hidden = true;
},true);
- document.getElementById('liberator-commandline').addEventListener("blur",function(e){
+ document.getElementById('liberator-commandline-command').addEventListener("blur",function(e){
hbox.hidden = false;
},true);
|