1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 17:27:58 +01:00

Fix Option#get

This commit is contained in:
anekos
2009-01-05 13:27:58 +09:00
parent 5e8e1b0507
commit 1c6907eb2c

View File

@@ -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;
},