Skip to content

Commit 8959840

Browse files
Add build folder for PR 1501
1 parent 195467e commit 8959840

File tree

1,144 files changed

+355413
-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

+355413
-0
lines changed

Sources/ContentScopeScripts/dist/contentScope.js

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

Sources/ContentScopeScripts/dist/contentScopeIsolated.js

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

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

Lines changed: 1104 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)