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

@ -115,7 +115,7 @@ ComunicWeb.components.conversations.unreadDropdown = {
var usersID = [];
//Process the list of conversations
for (let index = 0; index < conversations.length; index++) {
for (var index = 0; index < conversations.length; index++) {
const entry = conversations[index];
var userID = entry.userID;
@ -153,7 +153,7 @@ ComunicWeb.components.conversations.unreadDropdown = {
target.innerHTML = "";
//Process each conversation
for (let index = 0; index < conversations.length; index++) {
for (var index = 0; index < conversations.length; index++) {
//Get the conversation
const conversation = conversations[index];