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

Release 1.0 βeta 2.

This commit is contained in:
Kris Maglione
2010-10-02 16:35:38 -04:00
parent 8ab81562ba
commit 408e91db5e
4 changed files with 15 additions and 14 deletions

View File

@@ -1405,7 +1405,7 @@ const Options = Module("options", {
completion.optionValue = function (context, name, op, curValue, completer) {
let opt = options.get(name);
completer = completer || opt.completer;
if (!completer)
if (!completer || !opt)
return;
try {