Browse Source

Merge pull request #458 from santiph/patch/trigger-arguments

Add arguments to Editor.trigger() function
pull/483/head
Artur Arseniev 8 years ago
committed by GitHub
parent
commit
f448c01ae5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/editor/index.js

2
src/editor/index.js

@ -539,7 +539,7 @@ module.exports = config => {
* @return {this}
*/
trigger(event) {
return em.trigger(event);
return em.trigger.apply(em, arguments);
},
/**

Loading…
Cancel
Save