We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0afabd6 commit 75ddad2Copy full SHA for 75ddad2
scaladoc/resources/dotty_res/scripts/ux.js
@@ -167,6 +167,11 @@ function attachAllListeners() {
167
if (url.origin !== window.location.origin) {
168
return;
169
}
170
+ // ISSUE-19208, treat as normal link when lacking HTTP server,
171
+ // otherwise GET request blocked by CORS protections.
172
+ if (window.location.protocol.startsWith("file")) {
173
+ return;
174
+ }
175
if (e.metaKey || e.ctrlKey || e.shiftKey || e.altKey || e.button !== 0) {
176
177
0 commit comments