From f0318d96755adb401ab47a1f5c7244097048b5fa Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sat, 18 Oct 2008 02:23:04 +0000 Subject: [PATCH] fix :let - liberator.globalVariables --- content/options.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/options.js b/content/options.js index 5c190368..fb2ffb26 100644 --- a/content/options.js +++ b/content/options.js @@ -286,7 +286,7 @@ function Options() //{{{ var str = { - 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 }