add conditional for menu.popup(window, callback)
This commit is contained in:
Родитель
55d4d74624
Коммит
cd9e7142e4
|
@ -58,8 +58,9 @@ Menu.prototype.popup = function (window, x, y, positioningItem) {
|
|||
callback = newPosition
|
||||
}
|
||||
|
||||
// menu.popup({})
|
||||
if (window != null && window.constructor === Object) {
|
||||
// menu.popup({}) || menu.popup(window, callback)
|
||||
if ((window != null && window.constructor === Object) ||
|
||||
(x && typeof x === 'function')) {
|
||||
opts = window
|
||||
callback = arguments[1]
|
||||
// menu.popup(window, {})
|
||||
|
|
Загрузка…
Ссылка в новой задаче