Skip to content

Commit 2fb67aa

Browse files
committed
ACP2E-798: Catalog rule bug on M2.4.4
- Remove IE deffered loader as IE is no longer supported
1 parent 5d9fe40 commit 2fb67aa

File tree

6 files changed

+2
-12
lines changed

6 files changed

+2
-12
lines changed

app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/checkboxes/tree.phtml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
<?php $divId = $block->escapeHtml('tree-div_' . time()) ?>
1313
<div id="<?= /* @noEscape */ $divId ?>" class="tree"></div>
14-
<script id="ie-deferred-loader" defer="defer" src="//:"></script>
1514

1615
<script type="text/x-magento-init">
1716
{

app/code/Magento/Catalog/view/adminhtml/templates/catalog/category/widget/tree.phtml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99

1010
<?php $_divId = 'tree' . $block->getId() ?>
1111
<div id="<?= $block->escapeHtmlAttr($_divId) ?>" class="tree"></div>
12-
<!--[if IE]>
13-
<script id="ie-deferred-loader" defer="defer" src="//:"></script>
14-
<![endif]-->
1512
<?php
1613
$isUseMassaction = $block->getUseMassaction() ? 1 : 0;
1714
$isAnchorOnly = $block->getIsAnchorOnly() ? 1 : 0;

app/code/Magento/Catalog/view/adminhtml/templates/catalog/product/attribute/set/main.phtml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,6 @@ script;
4949
<span class="title"><?= $block->escapeHtml(__('Unassigned Attributes')) ?></span>
5050
</div>
5151
<div id="tree-div2" class="attribute-set-tree"></div>
52-
<?= /* @noEscape */ $secureRenderer->renderTag(
53-
'script',
54-
['id' => "ie-deferred-loader", 'defer' => "defer", 'src' => "//:"],
55-
'&nbsp;',
56-
false
57-
) ?>
5852
<?php $readOnly = ($block->getIsReadOnly() ? 'false' : 'true');
5953
$groupTree = /* @noEscape */ $block->getGroupTreeJson();
6054
$attributeTreeJson = /* @noEscape */ $block->getAttributeTreeJson();

app/code/Magento/SalesRule/Test/Mftf/Test/PriceRuleCategoryNestingTest.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,7 @@
6262
<waitForAjaxLoad stepKey="ajaxLoad4"/>
6363
<waitForElement selector="{{PriceRuleConditionsSection.subcategory4level}}" stepKey="wait4"/>
6464
<click selector="{{PriceRuleConditionsSection.subcategory4level}}" stepKey="openLatestTreeNode4"/>
65+
<scrollToTopOfPage stepKey="scrollToTop"/>
66+
<dontSee stepKey="dontSeeErrorMessage" userInput="A technical problem with the server created an error. Try again to continue what you were doing. If the problem persists, try again later."/>
6567
</test>
6668
</tests>

app/code/Magento/Widget/view/adminhtml/templates/catalog/category/widget/tree.phtml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
<?php $_divId = 'tree' . $block->getId() ?>
1212
<div id="<?= $block->escapeHtmlAttr($_divId) ?>" class="tree"></div>
13-
<script id="ie-deferred-loader" defer="defer" src="//:"></script>
1413
<?php
1514
$useMassaction = /* @noEscape */ $block->getUseMassaction() ? 1 : 0;
1615
$isAnchorOnly = /* @noEscape */ $block->getIsAnchorOnly() ? 1 : 0;

app/code/Magento/Widget/view/adminhtml/templates/instance/edit/layout.phtml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
<div class="actions"><?= $block->getAddLayoutButtonHtml() ?></div>
1818
</div>
1919
</fieldset>
20-
<script id="ie-deferred-loader" defer="defer" src="//:"></script>
2120
<?php
2221
/** @var \Magento\Framework\Json\Helper\Data $jsonHelper */
2322
$jsonHelper = $block->getData('jsonHelper');

0 commit comments

Comments
 (0)