diff --git a/app/modules/profile/profile-contacts/profile-contacts.jade b/app/modules/profile/profile-contacts/profile-contacts.jade index 4d1de5f0..ffc0e122 100644 --- a/app/modules/profile/profile-contacts/profile-contacts.jade +++ b/app/modules/profile/profile-contacts/profile-contacts.jade @@ -1,4 +1,6 @@ section.profile-contacts + div(ng-if="!vm.contacts.size") + p Loading... (TODO) // nav.profile-contact-filters // a.active(href="", title="No Filter") all // a(href="", title="Only show your team") team diff --git a/app/modules/profile/profile-projects/profile-projects.jade b/app/modules/profile/profile-projects/profile-projects.jade index 3c3b0d76..5251bda3 100644 --- a/app/modules/profile/profile-projects/profile-projects.jade +++ b/app/modules/profile/profile-projects/profile-projects.jade @@ -1,4 +1,7 @@ section.profile-projects + div(ng-if="!vm.projects.size") + p Loading... (TODO) + div.project-list-single(tg-repeat="project in vm.projects") div.project-list-single-left diff --git a/app/modules/user-timeline/user-timeline/user-timeline.jade b/app/modules/user-timeline/user-timeline/user-timeline.jade index e3c80b78..dc8e2ab6 100644 --- a/app/modules/user-timeline/user-timeline/user-timeline.jade +++ b/app/modules/user-timeline/user-timeline/user-timeline.jade @@ -1,3 +1,6 @@ section.profile-timeline + div(ng-if="!vm.timelineList.size") + p Loading... (TODO) + div(infinite-scroll="vm.loadTimeline()", infinite-scroll-distance="3", infinite-scroll-disabled="vm.scrollDisabled") div(tg-repeat="timeline in vm.timelineList", tg-user-timeline-item="timeline")