mirror of
https://github.com/Kornstalx/5etools-mirror-2.github.io.git
synced 2025-10-28 20:45:35 -05:00
v1.209.2
This commit is contained in:
@@ -113,9 +113,11 @@ export class BrewUtil2Base {
|
||||
|
||||
isReloadRequired () { return this._isDirty; }
|
||||
|
||||
doLocationReload () {
|
||||
if (typeof Hist !== "undefined") Hist.doPreLocationReload();
|
||||
else window.location.hash = "";
|
||||
doLocationReload ({isRetainHash = false} = {}) {
|
||||
if (!isRetainHash) {
|
||||
if (typeof Hist !== "undefined") Hist.doPreLocationReload();
|
||||
else window.location.hash = "";
|
||||
}
|
||||
|
||||
location.reload();
|
||||
}
|
||||
@@ -513,6 +515,8 @@ export class BrewUtil2Base {
|
||||
pLoadPropIndex (urlRoot) { throw new Error("Unimplemented!"); }
|
||||
/** @abstract */
|
||||
pLoadMetaIndex (urlRoot) { throw new Error("Unimplemented!"); }
|
||||
/** @abstract */
|
||||
pLoadAdventureBookIdsIndex (urlRoot) { throw new Error("Unimplemented!"); }
|
||||
|
||||
async pGetCombinedIndexes () {
|
||||
const urlRoot = await this.pGetCustomUrl();
|
||||
|
||||
Reference in New Issue
Block a user