File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,15 +29,6 @@ body {
2929 -ms-text-size-adjust : 100% ;
3030}
3131
32- body : after {
33- content : "" ;
34- position : fixed;
35- background : var (--cs-secondary-color );
36- height : 5px ;
37- bottom : 0 ;
38- width : 100% ;
39- }
40-
4132a {
4233 color : var (--cs-link-color );
4334 text-decoration-line : none;
Original file line number Diff line number Diff line change 11var staticAssetsCacheName = "StaticAssetsList" ,
22 imageAssetsCacheName = "ImgStaticList" ,
3- version = "v3:1:33 " ;
3+ version = "v3:1:34 " ;
44
55var staticPrimaryAssets = [ "/" , "/index.css" ] ;
66
@@ -25,12 +25,12 @@ self.addEventListener("activate", (event) => {
2525 . map ( function ( key ) {
2626 console . log ( " New key available, delete old key: " + key ) ;
2727 return caches . delete ( key ) ;
28- } )
28+ } ) ,
2929 ) ;
3030 } )
3131 . catch ( function ( ) {
3232 console . log ( "Something Went wrong" ) ;
33- } )
33+ } ) ,
3434 ) ;
3535} ) ;
3636
@@ -48,7 +48,7 @@ self.addEventListener("fetch", (event) => {
4848 event . respondWith (
4949 caches . match ( event . request ) . then ( function ( response ) {
5050 return response || fetch ( event . request ) ;
51- } )
51+ } ) ,
5252 ) ;
5353 }
5454} ) ;
You can’t perform that action at this time.
0 commit comments