removing some dump()s.

This commit is contained in:
blakeross%telocity.com 2001-01-10 03:58:57 +00:00
parent 2f3d0f4159
commit 41139b5617
3 changed files with 3 additions and 10 deletions

View File

@ -15,7 +15,7 @@
<script language="javascript">
<![CDATA[
_elementIDs = ["mailFixedWidthMessages", "mailQuotedStyle", "mailQuotedSize", "wrapLongLines", "displayGlyph", "mailCitationColor", "sendDefaultCharsetList", "forceCharsetOverride"];
var _elementIDs = ["mailFixedWidthMessages", "mailQuotedStyle", "mailQuotedSize", "wrapLongLines", "displayGlyph", "mailCitationColor", "sendDefaultCharsetList", "forceCharsetOverride"];
function Startup()
{
@ -36,9 +36,6 @@
var colorRef = aPicker.nextSibling;
colorRef.setAttribute("value", aPicker.color );
}
dump("*** foopy noopy\n");
]]>
</script>

View File

@ -30,11 +30,9 @@ const _DEBUG = false;
function initPanel ( aPrefTag )
{
if( hPrefWindow )
hPrefWindow.onpageload( aPrefTag )
else {
dump("*** queueing up a panel...\n");
hPrefWindow.onpageload( aPrefTag );
else
window.queuedTag = aPrefTag;
}
}
window.doneLoading = false;

View File

@ -57,12 +57,10 @@
<script language="JavaScript">
<![CDATA[
if( window.arguments && window.arguments[0] ) {
dump("*** panel to load is = " + window.arguments[0] + "\n");
document.getElementById("panelFrame").setAttribute("src", window.arguments[0] );
document.getElementById("panelFrame").setAttribute("tag", window.arguments[0] );
}
else {
dump("*** window.arguments not found, defaulting to navigator panel \n");
document.getElementById("panelFrame").setAttribute("src", "chrome://communicator/content/pref/pref-navigator.xul" );
document.getElementById("panelFrame").setAttribute("tag", "chrome://communicator/content/pref/pref-navigator.xul" );
}