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 63434d2 commit 5722010Copy full SHA for 5722010
app/code/Magento/Catalog/view/adminhtml/web/catalog/product/composite/configure.js
@@ -47,10 +47,14 @@ define([
47
* Initialize object
48
*/
49
initialize: function () {
50
- var self = this;
+ var self = this,
51
+ popupDialog = jQuery('#product_composite_configure');
52
53
this._initWindowElements();
54
jQuery.async('#product_composite_configure', function (el) {
55
+ if (el !== popupDialog[0]) {
56
+ el = popupDialog[0];
57
+ }
58
self.dialog = jQuery(el).modal({
59
title: jQuery.mage.__('Configure Product'),
60
type: 'slide',
0 commit comments