mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-25 21:39:21 +00:00
Fix iOS 9 issue
This commit is contained in:
parent
4ec6213877
commit
701d070efd
@ -87,9 +87,9 @@ ComunicWeb.pages.conversations.listPane = {
|
|||||||
});
|
});
|
||||||
|
|
||||||
//Process the list of conversations
|
//Process the list of conversations
|
||||||
for (const num in list) {
|
for (var num in list) {
|
||||||
if (list.hasOwnProperty(num)) {
|
if (list.hasOwnProperty(num)) {
|
||||||
const conversation = list[num];
|
var conversation = list[num];
|
||||||
|
|
||||||
//Display conversation element
|
//Display conversation element
|
||||||
this._display_entry(conversationsContainer, conversation, args);
|
this._display_entry(conversationsContainer, conversation, args);
|
||||||
|
Loading…
Reference in New Issue
Block a user