diff options
-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);
|