<%= lang.global.activity_feed %>
<%= lang.activity_feed.empty %>
<%} else { %> diff --git a/src/webfiles/portal/js/juxt.js b/src/webfiles/portal/js/juxt.js index c213c5a..591001d 100644 --- a/src/webfiles/portal/js/juxt.js +++ b/src/webfiles/portal/js/juxt.js @@ -444,13 +444,13 @@ function loadPosts(type) { var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState === 4 && this.status === 200) { - document.getElementById('community-posts-inner-body').innerHTML = this.responseText; + document.getElementById('wrapper').innerHTML = this.responseText; wiiuBrowser.showLoadingIcon(false); initCommunityUsers(); } else if(this.readyState === 4 && this.status === 204) { - document.getElementById('community-posts-inner-body').innerHTML = 'No Posts
'; + document.getElementById('wrapper').innerHTML = 'No Posts
'; wiiuBrowser.showLoadingIcon(false); } else if (this.readyState === 4){ @@ -527,7 +527,7 @@ function loadFeedPosts(element) { var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState === 4 && this.status === 200) { - document.getElementById('community-posts-inner-body').innerHTML += this.responseText; + document.getElementById('wrapper').innerHTML += this.responseText; } else if(this.readyState === 4 && this.status === 204) { diff --git a/src/webfiles/portal/nav_bar.ejs b/src/webfiles/portal/nav_bar.ejs index 62782aa..5a8c3eb 100644 --- a/src/webfiles/portal/nav_bar.ejs +++ b/src/webfiles/portal/nav_bar.ejs @@ -2,7 +2,8 @@