Skip to content

Commit

Permalink
Add build folder for PR 1326
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 16, 2024
1 parent ebbc1cf commit 1eac1c7
Show file tree
Hide file tree
Showing 1,066 changed files with 250,726 additions and 0 deletions.
5,636 changes: 5,636 additions & 0 deletions Sources/ContentScopeScripts/dist/contentScope.js

Large diffs are not rendered by default.

16,256 changes: 16,256 additions & 0 deletions Sources/ContentScopeScripts/dist/contentScopeIsolated.js

Large diffs are not rendered by default.

950 changes: 950 additions & 0 deletions Sources/ContentScopeScripts/dist/pages/duckplayer/dist/index.css

Large diffs are not rendered by default.

3,554 changes: 3,554 additions & 0 deletions Sources/ContentScopeScripts/dist/pages/duckplayer/dist/index.js

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions Sources/ContentScopeScripts/dist/pages/duckplayer/dist/inline.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
"use strict";
(() => {
// pages/duckplayer/src/inline.js
var param = new URLSearchParams(window.location.search).get("platform");
if (isAllowed(param)) {
document.documentElement.dataset.platform = String(param);
} else {
document.documentElement.dataset.platform = "apple";
}
function isAllowed(input) {
const allowed = ["windows", "apple", "integration"];
return allowed.includes(input);
}
})();
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 1eac1c7

Please sign in to comment.