Skip to content

Commit

Permalink
FIx static urls
Browse files Browse the repository at this point in the history
  • Loading branch information
AnderTM committed Oct 13, 2023
1 parent 1694313 commit 16b8433
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="./css/bootstrap.min.css">

</head>

Expand Down Expand Up @@ -192,10 +192,10 @@ <h5 class="card-title mb-0">Import scheme</h5>



<script src="/js/bootstrap.bundle.min.js"></script>
<script src="/js/vue.global.prod.v.3.3.4.js"></script>
<!-- <script src="/js/vue-color.min.js"></script> -->
<script src="/js/jscolor.2.5.1-min.js"></script>
<script src="./js/bootstrap.bundle.min.js"></script>
<script src="./js/vue.global.prod.v.3.3.4.js"></script>
<!-- <script src="./js/vue-color.min.js"></script> -->
<script src="./js./jscolor.2.5.1-min.js"></script>


<script>
Expand Down Expand Up @@ -318,7 +318,7 @@ <h5 class="card-title mb-0">Import scheme</h5>
delete this.color_links[index]
},
fetchSchemesFile() {
fetch('scheme_files.json')
fetch('./scheme_files.json')
.then(data => data.json())
.then(data => {
//console.log(data)
Expand All @@ -327,7 +327,7 @@ <h5 class="card-title mb-0">Import scheme</h5>
},
fetchScheme(schemeName) {
//console.log('fetchScheme')
fetch('/colorschemes/' + schemeName)
fetch('./colorschemes/' + schemeName)
.then(data => data.text())
.then(data => {
this.scheme_name = schemeName.replace('.micro', '')
Expand Down

0 comments on commit 16b8433

Please sign in to comment.