File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed
app/code/Magento/Shipping/view/frontend/templates/tracking
dev/tests/integration/testsuite/Magento/Shipping/Controller/Adminhtml/Order/Shipment Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -65,13 +65,9 @@ $results = $block->getTrackingInfo();
65
65
'jquery',
66
66
'prototype'
67
67
], function (jQuery) {
68
- var hideActions = function () {
69
- jQuery('.actions button.close').hide();
70
- };
71
-
72
68
/* hide the close button when the content doesn't open in a modal window */
73
69
if (window.opener === null || typeof window.opener === "undefined") {
74
- hideActions ();
70
+ jQuery('.actions button.close').hide ();
75
71
}
76
72
});
77
73
</script>
Original file line number Diff line number Diff line change @@ -56,13 +56,13 @@ public function testSendEmailOnShipmentSave(): void
56
56
"Your Shipment # {$ shipment ->getIncrementId ()} for Order # {$ order ->getIncrementId ()}"
57
57
),
58
58
new StringContains (
59
- " some_tracking_title "
59
+ ' some_tracking_title '
60
60
),
61
61
new StringContains (
62
- " some_racking_number "
62
+ ' some_racking_number '
63
63
),
64
64
new StringContains (
65
- " shipping/tracking/popup?hash= "
65
+ ' shipping/tracking/popup?hash= '
66
66
)
67
67
);
68
68
You can’t perform that action at this time.
0 commit comments