tmp tabs loading

stable
Juanfran 2015-05-25 14:54:53 +02:00
parent 1d05d6e219
commit f597db104e
3 changed files with 8 additions and 0 deletions

View File

@ -1,4 +1,6 @@
section.profile-contacts section.profile-contacts
div(ng-if="!vm.contacts.size")
p Loading... (TODO)
// nav.profile-contact-filters // nav.profile-contact-filters
// a.active(href="", title="No Filter") all // a.active(href="", title="No Filter") all
// a(href="", title="Only show your team") team // a(href="", title="Only show your team") team

View File

@ -1,4 +1,7 @@
section.profile-projects 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(tg-repeat="project in vm.projects")
div.project-list-single-left div.project-list-single-left

View File

@ -1,3 +1,6 @@
section.profile-timeline 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(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") div(tg-repeat="timeline in vm.timelineList", tg-user-timeline-item="timeline")