Files
sccs_laravel/public/js/scripts/components/components-dropdowns.js
2025-11-04 16:23:40 +05:00

20 lines
941 B
JavaScript

/*=========================================================================================
File Name: components-dropdown.js
----------------------------------------------------------------------------------------
Item Name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
Author: Pixinvent
Author URL: hhttp://www.themeforest.net/user/pixinvent
==========================================================================================*/
(function (window, document, $) {
'use strict';
var dropdownMenuIcon = $('.dropdown-icon-wrapper .dropdown-item');
// For Dropdown With Icons
dropdownMenuIcon.on('click', function () {
$('.dropdown-icon-wrapper .dropdown-toggle svg').remove();
$(this).find('svg').clone().appendTo('.dropdown-icon-wrapper .dropdown-toggle');
$('.dropdown-icon-wrapper .dropdown-toggle .dropdown-item').removeClass('dropdown-item');
});
})(window, document, jQuery);