Skip to content

Commit f1c3f2f

Browse files
Add build folder for PR 1477
1 parent b6b8c9a commit f1c3f2f

File tree

1,144 files changed

+356233
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,144 files changed

+356233
-0
lines changed

Sources/ContentScopeScripts/dist/contentScope.js

+5,644
Large diffs are not rendered by default.

Sources/ContentScopeScripts/dist/contentScopeIsolated.js

+16,274
Large diffs are not rendered by default.

Sources/ContentScopeScripts/dist/pages/duckplayer/dist/index.css

+1,105
Large diffs are not rendered by default.

Sources/ContentScopeScripts/dist/pages/duckplayer/dist/index.js

+3,821
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
"use strict";
2+
(() => {
3+
// pages/duckplayer/src/inline.js
4+
var param = new URLSearchParams(window.location.search).get("platform");
5+
if (isAllowed(param)) {
6+
document.documentElement.dataset.platform = String(param);
7+
} else {
8+
document.documentElement.dataset.platform = "apple";
9+
}
10+
function isAllowed(input) {
11+
const allowed = ["windows", "apple", "integration"];
12+
return allowed.includes(input);
13+
}
14+
})();

0 commit comments

Comments
 (0)