Fixed typo

This commit is contained in:
Pierre
2018-03-25 09:43:39 +02:00
parent cf3207ddc9
commit cca7b536b2
25 changed files with 129 additions and 129 deletions

View File

@ -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"
});

View File

@ -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;