File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -337,11 +337,11 @@ <h2><a id="globals">Global Variables</a></h2>
337
337
DEFAULT_SFX: number[]
338
338
339
339
// Math constants
340
- PI: number // approximately 3.14 radians (180º )
340
+ PI: number // approximately 3.14 radians (180° )
341
341
342
- TWO_PI: number // approximately 6.28 radians (360º )
342
+ TWO_PI: number // approximately 6.28 radians (360° )
343
343
344
- HALF_PI: number // approximately 1.57 radians (90º )</ code > </ pre >
344
+ HALF_PI: number // approximately 1.57 radians (90° )</ code > </ pre >
345
345
346
346
< h2 > < a id ="drawing "> Functions for Drawing</ a > </ h2 >
347
347
Original file line number Diff line number Diff line change 1
1
const cacheName = "luizbills.litecanvas-editor-v1" ;
2
- const version = "2.41.1 " ;
2
+ const version = "2.41.2 " ;
3
3
4
4
const precacheResources = [
5
5
"/" ,
@@ -28,7 +28,7 @@ const precacheResources = [
28
28
29
29
self . addEventListener ( "install" , ( event ) => {
30
30
event . waitUntil (
31
- caches . open ( cacheName ) . then ( ( cache ) => cache . addAll ( precacheResources ) )
31
+ caches . open ( cacheName ) . then ( ( cache ) => cache . addAll ( precacheResources ) ) ,
32
32
) ;
33
33
} ) ;
34
34
@@ -41,7 +41,7 @@ self.addEventListener("fetch", (event) => {
41
41
return cachedResponse ;
42
42
}
43
43
return fetch ( event . request ) ;
44
- } )
44
+ } ) ,
45
45
) ;
46
46
} ) ;
47
47
You can’t perform that action at this time.
0 commit comments