Skip to content

Commit 89b18bd

Browse files
authored
Merge pull request #95 from magento-commerce/platform-health
[Lynx] Update jquery deprecated functions in ts files
2 parents 3b9d7b3 + 1b8b4ad commit 89b18bd

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

app/code/Magento/PageBuilder/view/adminhtml/web/js/binding/focus.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/code/Magento/PageBuilder/view/adminhtml/web/js/panel.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/code/Magento/PageBuilder/view/adminhtml/web/js/utils/nesting-link-dialog.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/code/Magento/PageBuilder/view/adminhtml/web/js/utils/nesting-widget-dialog.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/code/Magento/PageBuilder/view/adminhtml/web/ts/js/utils/nesting-link-dialog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default function nestingLinkDialog(
3737
linkUrl[linkUrl.type].length !== 0
3838
) {
3939
const inlineEditor = $("#" + wysiwyg.elementId);
40-
inlineEditor.blur();
40+
inlineEditor.trigger("blur");
4141
confirmationDialog({
4242
actions: {
4343
always: () => {

app/code/Magento/PageBuilder/view/adminhtml/web/ts/js/utils/nesting-widget-dialog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export default function nestingWidgetDialog(
3939
linkUrl[linkUrl.type].length !== 0
4040
) {
4141
const inlineEditor = $("#" + wysiwyg.elementId);
42-
inlineEditor.blur();
42+
inlineEditor.trigger("blur");
4343
confirmationDialog({
4444
actions: {
4545
always: () => {

0 commit comments

Comments
 (0)