1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 08:08:00 +01:00

Move to the chrome://liberator namespace

This commit is contained in:
Kris Maglione
2008-10-09 02:25:19 +00:00
parent a3e898f810
commit 077fdc838a
10 changed files with 39 additions and 49 deletions

View File

@@ -876,12 +876,12 @@ liberator.Completion = function () //{{{
try
{
var xmlhttp = new XMLHttpRequest();
xmlhttp.open("GET", "chrome://" + liberator.config.name.toLowerCase() + "/locale/" + files[i], false);
xmlhttp.open("GET", "chrome://liberator/locale/" + files[i], false);
xmlhttp.send(null);
}
catch (e)
{
liberator.log("Error opening chrome://" + liberator.config.name.toLowerCase() + "/locale/" + files[i], 1);
liberator.log("Error opening chrome://liberator/locale/" + files[i], 1);
continue;
}
var doc = xmlhttp.responseXML;