Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// preload the vocabulary documents and the string catalog into the SaxonJS
// document pool, so doc() resolves them synchronously during initialization
const vocabs = ["vocabs/foaf.rdf", "vocabs/dcterms.rdf"];
Promise.all([SaxonJS.getResource({ location: "src/translations.rdf", type: "xml" }), ...vocabs.map(href =>
Promise.all([SaxonJS.getResource({ location: "dist/translations.rdf", type: "xml" }), ...vocabs.map(href =>
SaxonJS.getResource({ location: href, type: "xml" }))])
.then(([catalog, ...resources]) => {
const pool = {};
Expand Down
Loading