-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from iris-web-lab/library-implement
Library implement math.js
- Loading branch information
Showing
4 changed files
with
14 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,8 @@ | |
<meta name="theme-color" content="#004A77" /> | ||
<meta name="mobile-web-app-capable" content="yes"> | ||
<meta name="apple-mobile-web-app-capable" content="yes"> | ||
<link rel="manifest" href="/manifest.json?ver=13" /> | ||
<link rel="stylesheet" href="style.css?ver=13"> | ||
<link rel="manifest" href="/manifest.json?ver=14" /> | ||
<link rel="stylesheet" href="style.css?ver=14"> | ||
<link rel="icon" type="image/x-icon" href="/favicon.ico"> | ||
<style> | ||
@font-face { | ||
|
@@ -57,6 +57,7 @@ | |
<div id="button-equal" class="button equal">=</div> | ||
</div> | ||
</div> | ||
<script src="/script.js?ver=13"></script> | ||
<script src="/script.js?ver=14"></script> | ||
<script src="https://unpkg.com/[email protected]/lib/browser/math.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// Choose a cache name | ||
const cacheName = 'cache-v13'; | ||
const version = 13; | ||
const cacheName = 'cache-v14'; | ||
const version = 14; | ||
// List the files to precache | ||
const precacheResources = [ | ||
'/', | ||
|
@@ -13,6 +13,7 @@ const precacheResources = [ | |
'/icon-192.png', | ||
'/icon-512-maskable.png', | ||
'/back.svg', | ||
'https://unpkg.com/[email protected]/lib/browser/math.js', | ||
]; | ||
|
||
addEventListener("install", (event) => { | ||
|