Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[main] Custom Trusted Type Policy Support for Snippet Script Injection #2407

Merged
merged 5 commits into from
Sep 10, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update snippet.ts
  • Loading branch information
siyuniu-ms committed Sep 10, 2024
commit ba0e79c398a4b6fb17dfa96524642e57b1c95197
2 changes: 1 addition & 1 deletion tools/applicationinsights-web-snippet/src/snippet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ declare var cfg:ISnippetConfig;
let strGetMethod = "GET";
let sdkInstanceName = "appInsightsSDK"; // required for Initialization to find the current instance
let aiName = cfg.name || "appInsights"; // provide non default instance name through snipConfig name value
let policyName = cfg.pn || "1ds-default";
let policyName = cfg.pn || "aiPolicy";
if (cfg.name || win[sdkInstanceName]) {
// Only set if supplied or another name is defined to avoid polluting the global namespace
win[sdkInstanceName] = aiName;
Expand Down
Loading