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 df29e1b commit a2b41b3Copy full SHA for a2b41b3
app/code/Magento/Ui/view/base/web/js/grid/controls/button/split.js
@@ -0,0 +1,17 @@
1
+/**
2
+ * Copyright © Magento, Inc. All rights reserved.
3
+ * See COPYING.txt for license details.
4
+ */
5
+
6
+define([
7
+ 'jquery'
8
+], function ($) {
9
+ 'use strict';
10
11
+ return function (data, element) {
12
13
+ $(element).on('click.splitDefault', '.action-default', function () {
14
+ $(this).siblings('.dropdown-menu').find('.item-default').trigger('click');
15
+ });
16
+ };
17
+});
0 commit comments