Check menu.popup options are an object (#12325)
* check menu.popup options are an object * Add a spec for menu.popup options check * remove stray .only
This commit is contained in:
parent
792837bd71
commit
31d688ad3d
2 changed files with 9 additions and 0 deletions
|
@ -47,6 +47,9 @@ Menu.prototype._init = function () {
|
|||
}
|
||||
|
||||
Menu.prototype.popup = function (options) {
|
||||
if (options == null || typeof options !== 'object') {
|
||||
throw new TypeError('Options must be an object')
|
||||
}
|
||||
let {window, x, y, positioningItem, callback} = options
|
||||
|
||||
// no callback passed
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue