change link to ref-competences.css

This commit is contained in:
Emmanuel Viennet 2023-05-11 18:05:11 +02:00 committed by iziram
parent b349ff3d79
commit 1f7d13c6cf
1 changed files with 14 additions and 5 deletions

View File

@ -1,3 +1,16 @@
function getCurrentScriptPath() {
// Get all the script elements on the page
var scripts = document.getElementsByTagName('script');
// Find the last script element (which is the currently executing script)
var currentScript = scripts[scripts.length - 1];
// Retrieve the src attribute of the script element
var scriptPath = currentScript.src;
return scriptPath;
}
class ref_competences extends HTMLElement {
constructor() {
super();
@ -14,11 +27,7 @@ class ref_competences extends HTMLElement {
/* Style du module */
const styles = document.createElement('link');
styles.setAttribute('rel', 'stylesheet');
// if (location.href.split("/")[3] == "ScoDoc") {
styles.setAttribute('href', '/ScoDoc/static/css/ref-competences.css');
// } else {
// styles.setAttribute('href', 'ref-competences.css');
// }
styles.setAttribute('href', getCurrentScriptPath() + '../css/ref-competences.css');
this.shadow.appendChild(styles);
}