We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 032316d commit 3b139c4Copy full SHA for 3b139c4
app/code/Magento/Ui/view/base/web/js/form/element/wysiwyg.js
@@ -45,7 +45,8 @@ define([
45
component: this,
46
selector: 'button'
47
}, function (element) {
48
- this.$wysiwygEditorButton = $(element);
+ this.$wysiwygEditorButton = this.$wysiwygEditorButton ?
49
+ this.$wysiwygEditorButton.add($(element)) : $(element);
50
}.bind(this));
51
52
return this;
0 commit comments