makeSearchCommand: Fixed a bug that it didn't accept options.argument.

This commit is contained in:
satyr 2010-04-10 13:05:43 +09:00
Родитель 524ef8ed14
Коммит 27e0be4204
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -918,7 +918,7 @@ function makeSearchCommand(options) {
options.description = L(
"ubiquity.cmdutils.searchdescription",
"defaultUrl" in options ? htmlName.link(options.defaultUrl) : htmlName);
if (!("arguments" in options) || !("argument" in options))
if (!("arguments" in options || "argument" in options))
options.argument = this.__globalObject.noun_arb_text;
if (!("execute" in options)) options.execute = makeSearchCommand.execute;
if (!("preview" in options)) {