mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-23 21:56:10 +03: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})
|
||
|
}
|
||
|
|
||
|
|
||
|
|