Skip to content

Commit

Permalink
Stabilize Builds on Forward Ports Batch 35
Browse files Browse the repository at this point in the history
  • Loading branch information
serhii-balko committed Feb 19, 2018
1 parent 7005102 commit bd07bcc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/code/Magento/Ui/view/base/web/js/form/element/wysiwyg.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ define([
component: this,
selector: 'button'
}, function (element) {
this.$wysiwygEditorButton = $(element);
this.$wysiwygEditorButton = this.$wysiwygEditorButton ?
this.$wysiwygEditorButton.add($(element)) : $(element);
}.bind(this));

return this;
Expand Down

0 comments on commit bd07bcc

Please sign in to comment.