Skip to content

Commit

Permalink
Deploying to gh-pages from @ fc06359 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
nin-jin committed Jan 1, 2025
1 parent 6cf6bd6 commit 010cb0c
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 9 deletions.
1 change: 0 additions & 1 deletion node.js
Original file line number Diff line number Diff line change
Expand Up @@ -7851,7 +7851,6 @@ var $;
maxHeight: per(100),
boxSizing: 'border-box',
color: $mol_theme.text,
backdropFilter: blur(`3px`),
':focus': {
outline: 'none',
},
Expand Down
2 changes: 1 addition & 1 deletion node.js.map

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7851,7 +7851,6 @@ var $;
maxHeight: per(100),
boxSizing: 'border-box',
color: $mol_theme.text,
backdropFilter: blur(`3px`),
':focus': {
outline: 'none',
},
Expand Down
1 change: 0 additions & 1 deletion node.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7842,7 +7842,6 @@ var $;
maxHeight: per(100),
boxSizing: 'border-box',
color: $mol_theme.text,
backdropFilter: blur(`3px`),
':focus': {
outline: 'none',
},
Expand Down
2 changes: 1 addition & 1 deletion node.test.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion web.deps.json

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion web.js
Original file line number Diff line number Diff line change
Expand Up @@ -7335,7 +7335,6 @@ var $;
maxHeight: per(100),
boxSizing: 'border-box',
color: $mol_theme.text,
backdropFilter: blur(`3px`),
':focus': {
outline: 'none',
},
Expand Down Expand Up @@ -19597,6 +19596,14 @@ var $;
const fetch_data = () => fetch(request).then(response => {
if (response.status !== 200)
return response;
const headers = new Headers(response.headers);
headers.set("Cross-Origin-Embedder-Policy", "credentialless");
headers.set("Cross-Origin-Opener-Policy", "same-origin");
response = new Response(response.body, {
status: response.status,
statusText: response.statusText,
headers,
});
event.waitUntil(caches.open('$mol_offline').then(cache => cache.put(request, response)));
return response.clone();
});
Expand Down
2 changes: 1 addition & 1 deletion web.js.map

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion web.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7335,7 +7335,6 @@ var $;
maxHeight: per(100),
boxSizing: 'border-box',
color: $mol_theme.text,
backdropFilter: blur(`3px`),
':focus': {
outline: 'none',
},
Expand Down Expand Up @@ -19597,6 +19596,14 @@ var $;
const fetch_data = () => fetch(request).then(response => {
if (response.status !== 200)
return response;
const headers = new Headers(response.headers);
headers.set("Cross-Origin-Embedder-Policy", "credentialless");
headers.set("Cross-Origin-Opener-Policy", "same-origin");
response = new Response(response.body, {
status: response.status,
statusText: response.statusText,
headers,
});
event.waitUntil(caches.open('$mol_offline').then(cache => cache.put(request, response)));
return response.clone();
});
Expand Down

0 comments on commit 010cb0c

Please sign in to comment.