Merge pull request #291 from rkfg/rel

Make web paths relative
This commit is contained in:
Jukka Seppänen 2025-06-03 17:27:30 +03:00 committed by GitHub
commit 42c7641776
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View File

@ -38,10 +38,10 @@ export const loadScript = (
})
}
loadScript('/kjweb_async/marked.min.js').catch((e) => {
loadScript('kjweb_async/marked.min.js').catch((e) => {
console.log(e)
})
loadScript('/kjweb_async/purify.min.js').catch((e) => {
loadScript('kjweb_async/purify.min.js').catch((e) => {
console.log(e)
})

View File

@ -72,10 +72,10 @@ const create_documentation_stylesheet = () => {
}
}
loadScript('/kjweb_async/svg-path-properties.min.js').catch((e) => {
loadScript('kjweb_async/svg-path-properties.min.js').catch((e) => {
console.log(e)
})
loadScript('/kjweb_async/protovis.min.js').catch((e) => {
loadScript('kjweb_async/protovis.min.js').catch((e) => {
console.log(e)
})
create_documentation_stylesheet()

View File

@ -72,10 +72,10 @@ export const loadScript = (
}
}
loadScript('/kjweb_async/svg-path-properties.min.js').catch((e) => {
loadScript('kjweb_async/svg-path-properties.min.js').catch((e) => {
console.log(e)
})
loadScript('/kjweb_async/protovis.min.js').catch((e) => {
loadScript('kjweb_async/protovis.min.js').catch((e) => {
console.log(e)
})
create_documentation_stylesheet()