🔧 Fix value shift

This commit is contained in:
Felix Rieseberg 2017-12-11 13:30:35 -08:00
parent 5a658fa5f6
commit ffc54967e9

View file

@ -48,11 +48,8 @@ Menu.prototype.popup = function (window, x, y, positioningItem) {
let opts let opts
// menu.popup(x, y, positioningItem) // menu.popup(x, y, positioningItem)
if (!window) { if (window && typeof window !== 'object' || window.constructor !== BrowserWindow) {
// shift over values [newPosition, newY, newX, newWindow] = [y, x, window, null]
if (typeof window !== 'object' || window.constructor !== BrowserWindow) {
[newPosition, newY, newX, newWindow] = [y, x, window, null]
}
} }
// menu.popup({}) // menu.popup({})