fix: remove deco-none for mobile bar

main
Barış Soner Uşaklı 3 years ago
parent c1a94bd1ec
commit 2931b2ba91

@ -272,7 +272,11 @@ $(document).ready(function () {
function loadNotifications() { function loadNotifications() {
require(['notifications'], function (notifications) { require(['notifications'], function (notifications) {
notifications.loadNotifications($('#menu [data-section="notifications"] ul')); const notifList = $('#menu [data-section="notifications"] ul');
notifications.loadNotifications(notifList, function () {
notifList.find('.deco-none').removeClass('deco-none');
console.log(notifList.find('.deco-none'));
});
}); });
} }

Loading…
Cancel
Save