:memo: Add docs on BrowserWindow.id.
authorCheng Zhao <zcbenz@gmail.com>
Thu, 22 May 2014 01:56:04 +0000 (09:56 +0800)
committerCheng Zhao <zcbenz@gmail.com>
Thu, 22 May 2014 01:56:04 +0000 (09:56 +0800)
docs/api/browser-window.md

index 7b143b8..384b6e2 100644 (file)
@@ -148,15 +148,31 @@ Returns the window that is focused in this application.
 
 Find a window according to the `webContents` it owns
 
+### Class Method: BrowserWindow.fromId(id)
+
+* `id` Integer
+
+Find a window according to its ID.
+
 ### BrowserWindow.webContents
 
 The `WebContents` object this window owns, all web page related events and
 operations would be done via it.
 
+**Note:** Users should never store this object because it may becomes `null`
+when the web page has crashed.
+
 ### BrowserWindow.devToolsWebContents
 
 Get the `WebContents` of devtools of this window.
 
+**Note:** Users should never store this object because it may becomes `null`
+when the devtools has been closed.
+
+### BrowserWindow.id
+
+Get the unique ID of this window.
+
 ### BrowserWindow.destroy()
 
 Force closing the window, the `unload` and `beforeunload` event won't be emitted