Skip to content

Commit 6aa9cd8

Browse files
Add build folder for PR 1573
1 parent 3625950 commit 6aa9cd8

File tree

1,191 files changed

+334861
-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,191 files changed

+334861
-0
lines changed

Sources/ContentScopeScripts/dist/contentScope.js

Lines changed: 6006 additions & 0 deletions
Large diffs are not rendered by default.

Sources/ContentScopeScripts/dist/contentScopeIsolated.js

Lines changed: 11564 additions & 0 deletions
Large diffs are not rendered by default.

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

Lines changed: 1105 additions & 0 deletions
Large diffs are not rendered by default.

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

Lines changed: 3821 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 14 additions & 0 deletions
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)