| Current Path : /home/rtorresani/www/vendor/magento/module-ui/view/base/web/js/grid/controls/button/ |
| Current File : //home/rtorresani/www/vendor/magento/module-ui/view/base/web/js/grid/controls/button/split.js |
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
define([
'jquery'
], function ($) {
'use strict';
return function (data, element) {
$(element).on('click.splitDefault', '.action-default', function () {
$(this).siblings('.dropdown-menu').find('.item-default').trigger('click');
});
};
});