Skip to content

Commit

Permalink
fix the bug where the matrices do not rerender
Browse files Browse the repository at this point in the history
  • Loading branch information
Max-42 committed Sep 21, 2023
1 parent c2f8df4 commit 11daa24
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,9 @@ <h3>Impressum</h3>
div.innerHTML = matrixHTML;

// Render LaTeX using MathJax
//MathJax.Hub.Queue(["Typeset", MathJax.Hub, div]);
if (window.MathJax) {
MathJax.typesetPromise();
}
}


Expand Down
2 changes: 1 addition & 1 deletion service-worker.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// service-worker.js

const CACHE_VERSION = 'v5'; //todo UPDATE?
const CACHE_VERSION = 'v6'; //todo UPDATE?
const CACHE_NAME = `matrix-game-cache-${CACHE_VERSION}`;
const urlsToCache = [
'/',
Expand Down

0 comments on commit 11daa24

Please sign in to comment.