Fix capitalization of GitHub org

This commit is contained in:
ChaseKnowlden
2020-09-15 19:13:49 -04:00
committed by Martin Aeschlimann
parent 66c63c5d70
commit e8760a5d6c
186 changed files with 386 additions and 386 deletions

View File

@@ -1196,7 +1196,7 @@ export function computeScreenAwareSize(cssPx: number): number {
}
/**
* See https://github.com/Microsoft/monaco-editor/issues/601
* See https://github.com/microsoft/monaco-editor/issues/601
* To protect against malicious code in the linked site, particularly phishing attempts,
* the window.opener should be set to null to prevent the linked site from having access
* to change the location of the current page.
@@ -1205,7 +1205,7 @@ export function computeScreenAwareSize(cssPx: number): number {
export function windowOpenNoOpener(url: string): void {
if (platform.isNative || browser.isEdgeWebView) {
// In VSCode, window.open() always returns null...
// The same is true for a WebView (see https://github.com/Microsoft/monaco-editor/issues/628)
// The same is true for a WebView (see https://github.com/microsoft/monaco-editor/issues/628)
window.open(url);
} else {
let newTab = window.open();