mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-30 20:49:20 +03:00
New Sieve GUI improvements #80
This commit is contained in:
parent
ffc2da33f8
commit
0bd3804265
48 changed files with 181 additions and 144 deletions
|
|
@ -43,11 +43,12 @@ class FlagCommand extends ActionCommand
|
|||
if (args[0] instanceof GrammarQuotedString) {
|
||||
this._variablename = args[0];
|
||||
}
|
||||
if (args[1] instanceof GrammarString) {
|
||||
this.list_of_flags = args[1];
|
||||
}
|
||||
} else if (args[0] instanceof GrammarString) {
|
||||
args[0] = args[1];
|
||||
}
|
||||
if (args[0] instanceof GrammarStringList) {
|
||||
this.list_of_flags = args[0];
|
||||
} else if (args[0]) {
|
||||
this.list_of_flags.push(args[0]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue