Fixed issue on iOS 9

This commit is contained in:
Pierre
2018-04-24 20:19:00 +02:00
parent 40cdb339c3
commit 9bfd55c7df
7 changed files with 10 additions and 10 deletions

View File

@ -171,7 +171,7 @@ ComunicWeb.components.notifications.dropdown = {
list.innerHTML = "";
//Process the list of notifications
for (let i = 0; i < result.length; i++) {
for (var i = 0; i < result.length; i++) {
const notification = result[i];
//Display the notification

View File

@ -16,7 +16,7 @@ ComunicWeb.components.notifications.utils = {
var users = [];
for (let index = 0; index < list.length; index++) {
for (var index = 0; index < list.length; index++) {
const notif = list[index];
if(!users.includes(notif.from_user_id))