We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7005102 commit bd07bccCopy full SHA for bd07bcc
app/code/Magento/Ui/view/base/web/js/form/element/wysiwyg.js
@@ -46,7 +46,8 @@ define([
46
component: this,
47
selector: 'button'
48
}, function (element) {
49
- this.$wysiwygEditorButton = $(element);
+ this.$wysiwygEditorButton = this.$wysiwygEditorButton ?
50
+ this.$wysiwygEditorButton.add($(element)) : $(element);
51
}.bind(this));
52
53
return this;
0 commit comments