mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 774027 - Add hidden:true to selected GCLI commands; r=jwalker
This commit is contained in:
parent
ab20989e55
commit
4e144933a4
@ -141,6 +141,7 @@ function loadCommandFile(aFile, aSandboxPrincipal) {
|
||||
gcli.addCommand({
|
||||
name: "cmd",
|
||||
description: gcli.lookup("cmdDesc"),
|
||||
hidden: true
|
||||
});
|
||||
|
||||
/**
|
||||
@ -149,6 +150,7 @@ gcli.addCommand({
|
||||
gcli.addCommand({
|
||||
name: "cmd refresh",
|
||||
description: gcli.lookup("cmdRefreshDesc"),
|
||||
hidden: true,
|
||||
exec: function Command_cmdRefresh(args, context) {
|
||||
GcliCommands.refreshAutoCommands(context.environment.chromeDocument.defaultView);
|
||||
}
|
||||
@ -168,6 +170,7 @@ gcli.addCommand({
|
||||
}
|
||||
],
|
||||
returnType: "string",
|
||||
hidden: true,
|
||||
exec: function Command_echo(args, context) {
|
||||
return args.message;
|
||||
}
|
||||
@ -1429,6 +1432,7 @@ gcli.addCommand({
|
||||
name: 'jsb',
|
||||
description: gcli.lookup('jsbDesc'),
|
||||
returnValue:'string',
|
||||
hidden: true,
|
||||
params: [
|
||||
{
|
||||
name: 'url',
|
||||
|
Loading…
Reference in New Issue
Block a user