Skip to content

Commit

Permalink
Merge pull request #236 from Pross/asset-versions-js
Browse files Browse the repository at this point in the history
Add cache busting for JS files
  • Loading branch information
jxmx authored Aug 4, 2024
2 parents e773541 + 349371d commit 724d701
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@ <h5 class="modal-title" id="commandModalTitleBox"></h5>
</div>
<!-- End Main Page -->

<script src="js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
<script src="js/functions.js" crossorigin="anonymous"></script>
<script src="js/commands.js" crossorigin="anonymous"></script>
<script src="js/index.js" crossorigin="anonymous"></script>
<script src="js/bootstrap.bundle.min.js?v=@@HEAD-DEVELOP@@" crossorigin="anonymous"></script>
<script src="js/functions.js?v=@@HEAD-DEVELOP@@" crossorigin="anonymous"></script>
<script src="js/commands.js?v=@@HEAD-DEVELOP@@" crossorigin="anonymous"></script>
<script src="js/index.js?v=@@HEAD-DEVELOP@@" crossorigin="anonymous"></script>
</body>
</html>
8 changes: 4 additions & 4 deletions web/voter.html
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,10 @@ <h5 class="modal-title" id="commandModalTitleBox"></h5>
</div>
<!-- End Main Page -->

<script src="js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
<script src="js/functions.js" crossorigin="anonymous"></script>
<script src="js/commands.js" crossorigin="anonymous"></script>
<script src="js/voter.js" crossorigin="anonymous"></script>
<script src="js/bootstrap.bundle.min.js?v=@@HEAD-DEVELOP@@" crossorigin="anonymous"></script>
<script src="js/functions.js?v=@@HEAD-DEVELOP@@" crossorigin="anonymous"></script>
<script src="js/commands.js?v=@@HEAD-DEVELOP@@" crossorigin="anonymous"></script>
<script src="js/voter.js?v=@@HEAD-DEVELOP@@" crossorigin="anonymous"></script>
</body>
</html>

0 comments on commit 724d701

Please sign in to comment.