diff options
author | Doug Kearns <dougkearns@gmail.com> | 2009-04-03 01:58:42 +1100 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2009-04-03 02:03:35 +1100 |
commit | c4fa8c6098dd96cf6378b0909c6f06f322791466 (patch) | |
tree | 5943182cd3893d00fa1220345e8435069a1d1ad2 | |
parent | 0bbead8d2f27809b46a420bcadc63641aa43e066 (diff) | |
download | pentadactyl-c4fa8c6098dd96cf6378b0909c6f06f322791466.tar.gz |
Enable the service pane hide/show button in the media tab.
-rw-r--r-- | xulmus/NEWS | 1 | ||||
-rw-r--r-- | xulmus/content/config.js | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/xulmus/NEWS b/xulmus/NEWS index ed5bc0a9..23f41c78 100644 --- a/xulmus/NEWS +++ b/xulmus/NEWS @@ -10,6 +10,7 @@ * add :displaypane and :dpclose * rename :filter to :queue and :Filter to :filter * add 'repeat' and 'shuffle' + * the service pane show/hide button is active on the media tab 2009-03-28: * version 0.1 diff --git a/xulmus/content/config.js b/xulmus/content/config.js index 842a58c6..7b52c97a 100644 --- a/xulmus/content/config.js +++ b/xulmus/content/config.js @@ -180,7 +180,10 @@ const config = { //{{{ init: function () { // Adding a mode for Player - //modes.addMode("PLAYER"); // Player mode for songbird + //modes.addMode("PLAYER"); + + // enable the service pane hide/show button in the media tab + document.getElementById("servicepane-status-bar-box").childNodes[0].disabled = false // TODO: support 'nrformats'? -> probably not worth it --mst function incrementURL(count) |