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

fix :let - liberator.globalVariables

This commit is contained in:
Doug Kearns
2008-10-18 02:23:04 +00:00
parent 053678b08a
commit f0318d9675

View File

@@ -286,7 +286,7 @@ function Options() //{{{
var str =
<table>
{
template.map(globalVariables, function ([i, value]) {
template.map(liberator.globalVariables, function ([i, value]) {
let prefix = typeof value == "number" ? "#" :
typeof value == "function" ? "*" :
" ";
@@ -328,7 +328,7 @@ function Options() //{{{
if (!reference[0])
{
if (reference[2] == "g")
reference[0] = globalVariables;
reference[0] = liberator.globalVariables;
else
return; // for now
}