mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 11:22:41 +01:00
21 lines
222 B
JavaScript
21 lines
222 B
JavaScript
|
/** the options */
|
||
|
opt = Opt.get(
|
||
|
arguments,
|
||
|
{
|
||
|
d: "directory",
|
||
|
c: "conf",
|
||
|
"D[]": "define"
|
||
|
}
|
||
|
);
|
||
|
|
||
|
/** configuration */
|
||
|
opt.conf = {
|
||
|
/** keep */
|
||
|
keep: true,
|
||
|
/** base */
|
||
|
base: getBase(this, {p: properties})
|
||
|
}
|
||
|
|
||
|
|
||
|
|