mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 07:42:04 +00:00
Bug 330124 Fix 5 read-only variable warnings p=gautheri@noos.fr r+sr=me
This commit is contained in:
parent
c189db3cf0
commit
b10c50fb7d
@ -37,11 +37,11 @@
|
||||
// This is mostly a modified version of code in EdColorProps.xul
|
||||
|
||||
// Initialize in case we can't get them from prefs???
|
||||
const defaultTextColor="#000000";
|
||||
const defaultLinkColor="#000099";
|
||||
const defaultActiveColor="#000099";
|
||||
const defaultVisitedColor="#990099";
|
||||
const defaultBackgroundColor="#FFFFFF";
|
||||
var defaultTextColor = "#000000";
|
||||
var defaultLinkColor = "#000099";
|
||||
var defaultActiveColor = "#000099";
|
||||
var defaultVisitedColor = "#990099";
|
||||
var defaultBackgroundColor = "#FFFFFF";
|
||||
|
||||
var customTextColor;
|
||||
var customLinkColor;
|
||||
@ -111,7 +111,7 @@ function Startup()
|
||||
UseDefaultColors();
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
function GetColorAndUpdate(ColorWellID)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user