fix: pageAction.show/hide should have 1 non-optional parameter in their metadata

This commit is contained in:
Megaman 2017-09-26 14:30:21 +02:00 committed by Luca Greco
parent 67b3780d38
commit 0778db93ca
1 changed files with 4 additions and 4 deletions

View File

@ -300,16 +300,16 @@
"maxArgs": 1 "maxArgs": 1
}, },
"hide": { "hide": {
"minArgs": 0, "minArgs": 1,
"maxArgs": 0 "maxArgs": 1
}, },
"setIcon": { "setIcon": {
"minArgs": 1, "minArgs": 1,
"maxArgs": 1 "maxArgs": 1
}, },
"show": { "show": {
"minArgs": 0, "minArgs": 1,
"maxArgs": 0 "maxArgs": 1
} }
}, },
"runtime": { "runtime": {