j
"scripts": [
"src/assets/js/common.js"
]
Size: a a a
j
"scripts": [
"src/assets/js/common.js"
]
j
window.addEventListener("DOMContentLoaded", function () {
....
j
j
V
ДМ
OS
window.addEventListener("DOMContentLoaded", function () {
....
OS
j
OS
j
j
V
V
Е
j
document.addEventListener("DOMContentLoaded", function () {
let dropdown_profile = document.getElementById('dropdown_profile');
let dropdown_notification = document.getElementById('dropdown_notification');
dropdown_profile.addEventListener('click', function () {
let dropdown_profile_item = document.getElementById("dropdown_profile_item");
let dropdown_message = document.getElementById("nav-item dropdown mr-1");
this.classList.toggle("show");
dropdown_profile_item.classList.toggle("show");
dropdown_message.classList.toggle("show");
});
dropdown_notification.addEventListener('click', function () {
this.classList.toggle("show");
let notificationDropdown = document.getElementById("notif");
notificationDropdown.classList.toggle('show');
});
});
j
Е
S
Е