14 lines
447 B
JavaScript
14 lines
447 B
JavaScript
|
|
export class CharacterArchiver extends FormApplication {
|
|
|
|
static get defaultOptions() {
|
|
const options = super.defaultOptions;
|
|
options.id = "character-archiver";
|
|
options.template = "modules/rush-character-archive-foundry-module/templates/CharacterArchiver.hbs";
|
|
options.width = 500;
|
|
options.height = 270;
|
|
options.tabs = [{ navSelector: ".tabs", contentSelector: ".theatre-config-contents", initial: "main" }];
|
|
return options;
|
|
}
|
|
|
|
} |