tabPaneOverlay.js
Go to the documentation of this file.
1 /*
2  //
3 // BEGIN SONGBIRD GPL
4 //
5 // This file is part of the Songbird web player.
6 //
7 // Copyright(c) 2005-2009 POTI, Inc.
8 // http://songbirdnest.com
9 //
10 // This file may be licensed under the terms of of the
11 // GNU General Public License Version 2 (the "GPL").
12 //
13 // Software distributed under the License is distributed
14 // on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either
15 // express or implied. See the GPL for the specific language
16 // governing rights and limitations.
17 //
18 // You should have received a copy of the GPL along with this
19 // program. If not, go to http://www.gnu.org/licenses/gpl.html
20 // or write to the Free Software Foundation, Inc.,
21 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 //
23 // END SONGBIRD GPL
24 //
25 */
26 
27 // DOM defs.
28 if (typeof(XUL_NS) == "undefined")
29  var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
30 
35  onPaneLoad: function(event) {
36  // Don't actually load until the pane has been loaded (see the comments
37  // near the matching addEventListener call at the end of this code).
38  if (event.target.getAttribute("id") != "paneTabs") {
39  return;
40  }
41 
42  window.removeEventListener('paneload',
43  SongbirdTabPaneOverlay.onPaneLoad,
44  false);
45 
46  // Move tab preferences box into a group box.
47  var groupBoxElem = document.createElementNS(XUL_NS, "groupbox");
48  var tabPrefsBoxElem = document.getElementById("tabPrefsBox");
49  tabPrefsBoxElem.parentNode.appendChild(groupBoxElem);
50  groupBoxElem.appendChild(tabPrefsBoxElem);
51 
52  const warnOpenMany = document.getElementById("warnOpenMany");
53  warnOpenMany.setAttribute("hidden", "true");
54  }
55 };
56 
57 // Don't forget to load! Can't use the standard load event because the
58 // individual preference panes are loaded asynchronously via
59 // document.loadOverlay (see preferences.xml) and the load event may fire before
60 // our target pane has been integrated.
61 window.addEventListener('paneload',
62  SongbirdTabPaneOverlay.onPaneLoad,
63  false);
const XUL_NS
Definition: FeedWriter.js:83
var event
let window
var SongbirdTabPaneOverlay