From 4905d30dd620090f007c38f80aca3f7d9cc60045 Mon Sep 17 00:00:00 2001 From: Zeke Sikelianos Date: Tue, 12 Jul 2016 21:57:07 -0700 Subject: [PATCH] fix heading levels on BrowserWindowProxy --- docs/api/window-open.md | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/docs/api/window-open.md b/docs/api/window-open.md index b615a4b6488e..fd57790042cf 100644 --- a/docs/api/window-open.md +++ b/docs/api/window-open.md @@ -41,33 +41,37 @@ origin preference. The `BrowserWindowProxy` object is returned from `window.open` and provides limited functionality with the child window. -### `BrowserWindowProxy.blur()` +### Instance Methods + +The `BrowserWindowProxy` object has the following instance methods: + +#### `BrowserWindowProxy.blur()` Removes focus from the child window. -### `BrowserWindowProxy.close()` +#### `BrowserWindowProxy.close()` Forcefully closes the child window without calling its unload event. -### `BrowserWindowProxy.closed` +#### `BrowserWindowProxy.closed` Set to true after the child window gets closed. -### `BrowserWindowProxy.eval(code)` +#### `BrowserWindowProxy.eval(code)` * `code` String Evaluates the code in the child window. -### `BrowserWindowProxy.focus()` +#### `BrowserWindowProxy.focus()` Focuses the child window (brings the window to front). -### `BrowserWindowProxy.print()` +#### `BrowserWindowProxy.print()` Invokes the print dialog on the child window. -### `BrowserWindowProxy.postMessage(message, targetOrigin)` +#### `BrowserWindowProxy.postMessage(message, targetOrigin)` * `message` String * `targetOrigin` String