Implement user mentioning in frontend

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2018-10-06 11:54:15 +02:00
parent e29efe8935
commit 310af37d67
10 changed files with 804 additions and 15 deletions

View File

@@ -34,7 +34,8 @@
</div>
<span class="activitytime has-tooltip live-relative-timestamp"
data-timestamp="{{ activity.timelineTimestamp }}">{{ activity.timestamp/1000 | relativeDateFilter }}</span>
<div class="activitymessage" ng-bind-html="activity.message"></div>
<div class="activitymessage" ng-if="!activity.commentModel" ng-bind-html="activity.message"></div>
<div class="activitymessage" ng-if="activity.commentModel" bind-html-compile="$ctrl.formatMessage(activity)"></div>
</li>
<li ng-if="$ctrl.loading"><div class="icon-loading-small"></div></li>