mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-06-19 04:15:17 +00:00
Fixed typo
This commit is contained in:
@ -72,12 +72,12 @@ ComunicWeb.components.notifications.dropdown = {
|
||||
});
|
||||
|
||||
//Add notifications list
|
||||
var notificationsListContener = createElem2({
|
||||
var notificationsListContainer = createElem2({
|
||||
appendTo: dropdownMenu,
|
||||
type: "li"
|
||||
});
|
||||
var notificationsList = createElem2({
|
||||
appendTo: notificationsListContener,
|
||||
appendTo: notificationsListContainer,
|
||||
type: "ul",
|
||||
class: "menu"
|
||||
});
|
||||
|
@ -88,15 +88,15 @@ ComunicWeb.components.notifications.ui = {
|
||||
};
|
||||
|
||||
//Create the notification object
|
||||
var notificationContener = createElem2({
|
||||
var notificationContainer = createElem2({
|
||||
appendTo: target,
|
||||
type: "li",
|
||||
class: "notification-contener"
|
||||
class: "notification-container"
|
||||
});
|
||||
|
||||
//Create notification link
|
||||
var notificationLink = createElem2({
|
||||
appendTo: notificationContener,
|
||||
appendTo: notificationContainer,
|
||||
type: "a"
|
||||
});
|
||||
notificationLink.onclick = action;
|
||||
|
Reference in New Issue
Block a user