From bded827ce76fe1dc675080492b27cdc5588803cd Mon Sep 17 00:00:00 2001 From: Martin Stubenschrott Date: Mon, 27 Oct 2008 23:01:57 +0000 Subject: [PATCH] fixed custom hints --- content/hints.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/hints.js b/content/hints.js index bed474ea..3b5ed10f 100644 --- a/content/hints.js +++ b/content/hints.js @@ -534,7 +534,7 @@ function Hints() //{{{ case "contains" : return containsMatcher(hintString); case "wordstartswith": return wordStartsWithMatcher(hintString, /*allowWordOverleaping=*/ true); case "firstletters" : return wordStartsWithMatcher(hintString, /*allowWordOverleaping=*/ false); - case "custom" : return plugins.customHintMatcher(hintString); + case "custom" : return liberator.plugins.customHintMatcher(hintString); default : liberator.echoerr("Invalid hintmatching type: " + hintMatching); } return null;