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

@ -121,7 +121,7 @@ ComunicWeb.pages.latestPosts.main = {
_display_list: function(list, target){
//Process the list of posts
for (let index = 0; index < list.length; index++) {
for (var index = 0; index < list.length; index++) {
//Display the post
ComunicWeb.components.posts.ui.display_post(list[index], target);