From c6a16161d91ffd77e65ff4764e685f7f06dcf7dd Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Wed, 26 Nov 2014 15:15:55 +0100 Subject: [PATCH] Update documentation for Menu.popup() --- docs/api/menu.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/api/menu.md b/docs/api/menu.md index ceb00a3ed8c3..464b98f520dd 100644 --- a/docs/api/menu.md +++ b/docs/api/menu.md @@ -191,11 +191,15 @@ Generally, the `template` is just an array of `options` for constructing You can also attach other fields to element of the `template`, and they will become properties of the constructed menu items. -### Menu.popup(browserWindow) +### Menu.popup(browserWindow, [x, y]) * `browserWindow` BrowserWindow +* `x` Number +* `y` Number -Popups the this as context menu in the `browserWindow`. +Popups this menu as a context menu in the `browserWindow`. You can optionally +provide a `(x,y)` coordinate to place the menu at, otherwise it will be placed +at the current mouse cursor position. ### Menu.append(menuItem)