Refer rest parameters

pull/21833/head
Richard Lewis 2018-01-18 12:03:24 +00:00
parent 1293c53c4b
commit 917d85d603
1 changed files with 2 additions and 2 deletions

View File

@ -51,11 +51,11 @@ module.exports = {
createMenu: function(Element, props) {
const self = this;
const closeMenu = function() {
const closeMenu = function(...args) {
ReactDOM.unmountComponentAtNode(self.getOrCreateContainer());
if (props && props.onFinished) {
props.onFinished.apply(null, arguments);
props.onFinished.apply(null, args);
}
};