mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-23 13:46:09 +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})
|
|
}
|
|
|
|
|
|
|