From 1c6907eb2c17b0236ac28d1ecc2fb6169c6d112b Mon Sep 17 00:00:00 2001 From: anekos Date: Mon, 5 Jan 2009 13:27:58 +0900 Subject: [PATCH] Fix Option#get --- common/content/options.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/options.js b/common/content/options.js index b2ca0b1b..2b451649 100644 --- a/common/content/options.js +++ b/common/content/options.js @@ -125,7 +125,7 @@ Option.prototype = { aValue = this.globalvalue; if (this.getter) - this.getter.call(this, aValue); + return this.getter.call(this, aValue); return aValue; },