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 5fd6135 commit 169fcb7Copy full SHA for 169fcb7
app/code/Magento/AdminAnalytics/view/adminhtml/web/js/modal/component.js
@@ -52,9 +52,9 @@ define([
52
* Once the modal is opened it hides the X
53
*/
54
onOpened: function () {
55
- $('.modal-header button.action-close').attr("disabled", true).hide();
+ $('.modal-header button.action-close').attr('disabled', true).hide();
56
57
- this.focusableElements = $(this.rootSelector).find("a[href], button:enabled");
+ this.focusableElements = $(this.rootSelector).find('a[href], button:enabled');
58
this.firstFocusableElement = this.focusableElements[0];
59
this.lastFocusableElement = this.focusableElements[this.focusableElements.length - 1];
60
this.firstFocusableElement.focus();
0 commit comments