From 3fcb57559abac31b7521670515b96117df2e19f8 Mon Sep 17 00:00:00 2001 From: tinydew4 Date: Tue, 4 Oct 2016 08:35:07 +0000 Subject: [PATCH] Update the ko-KR docs related to the . --- docs-translations/ko-KR/api/web-contents.md | 2 ++ docs-translations/ko-KR/api/window-open.md | 8 ++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/docs-translations/ko-KR/api/web-contents.md b/docs-translations/ko-KR/api/web-contents.md index 8fbf8907ae0..5d634b99b95 100644 --- a/docs-translations/ko-KR/api/web-contents.md +++ b/docs-translations/ko-KR/api/web-contents.md @@ -146,6 +146,8 @@ Returns: * `disposition` String - `default`, `foreground-tab`, `background-tab`, `new-window`, `save-to-disk`, `other`중 하나일 수 있습니다. * `options` Object - 새로운 `BrowserWindow` 객체를 만들 때 사용되는 옵션 객체입니다. +* `additionalFeatures` Array - `window.open()` 에 주어진 (Chromium 또는 Electron + 에 의해 처리되지 않는) 비표준 기능. 페이지가 `url`에 대하여 새로운 윈도우를 열기위해 요청한 경우 발생하는 이벤트입니다. `window.open`이나 ``과 같은 외부 링크에 의해 요청될 수 있습니다. diff --git a/docs-translations/ko-KR/api/window-open.md b/docs-translations/ko-KR/api/window-open.md index f75f54276a5..91100276fa5 100644 --- a/docs-translations/ko-KR/api/window-open.md +++ b/docs-translations/ko-KR/api/window-open.md @@ -24,8 +24,12 @@ `features` 문자열은 표준 브라우저의 포맷을 따르고 있지만, 각 기능은 `BrowserWindow`의 옵션이어야 합니다. -**참고:** Node 통합 기능은 열린 `window`에서 부모 윈도우가 해당 옵션이 -비활성화되어있는 경우 항상 비활성화됩니다. +**참고:** +* Node 통합 기능은 열린 `window` 에서 부모 윈도우가 해당 옵션이 비활성화 + 되어있는 경우 항상 비활성화됩니다. +* `features` 에 있는 (Chromium 또는 Electron 에 의해 처리되지 않는) 비표준 + 기능은 `webContent` 에 등록된 `new-window` 이벤트 핸들러에 + `additionalFeatures` 인수로 전달될 것이다. ### `window.opener.postMessage(message, targetOrigin)`