diff --git a/app/static/js/ref_competences.js b/app/static/js/ref_competences.js index cf81acd4..892f5163 100644 --- a/app/static/js/ref_competences.js +++ b/app/static/js/ref_competences.js @@ -10,7 +10,18 @@ function getCurrentScriptPath() { return scriptPath; } +function removeLastTwoComponents(path) { + // Split the path into individual components + var components = path.split('/'); + // Remove the last two components (filename and enclosing directory) + components.splice(-2); + + // Join the remaining components back into a path + var newPath = components.join('/'); + + return newPath; +} class ref_competences extends HTMLElement { constructor() { super(); @@ -27,7 +38,7 @@ class ref_competences extends HTMLElement { /* Style du module */ const styles = document.createElement('link'); styles.setAttribute('rel', 'stylesheet'); - styles.setAttribute('href', getCurrentScriptPath() + '../css/ref-competences.css'); + styles.setAttribute('href', removeLastTwoComponents(getCurrentScriptPath()) + '/css/ref-competences.css'); this.shadow.appendChild(styles); }