Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve the Gravatar URL before image is loaded. #29

Merged
merged 1 commit into from
Oct 27, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<h3><localize key="theDashboard_recentActivities">Recent activities</localize></h3>
<p><localize key="theDashboard_recentActivitiesDescription">Shows recent activities from all users in the back office.</localize></p>
<div ng-repeat="item in vm.activities" class="logitem has-avatar">
<img src="{{item.userAvatarUrl}}" />
<img ng-src="{{item.userAvatarUrl}}" />
<span>{{item.timestamp | date:'medium'}}</span>
<div>
<p ng-show="item.logItemType =='Save'">
Expand Down Expand Up @@ -33,7 +33,7 @@ <h3><localize key="theDashboard_recentActivities">Recent activities</localize></
<h3><localize key="theDashboard_unpublishedContent">Unpublished content</localize></h3>
<p><localize key="theDashboard_unpublishedContentDescription">Shows unpublished content that has not been been scheduled for publish.</localize></p>
<div ng-repeat="item in vm.unpublishedContent" class="logitem">
<img src="{{item.userAvatarUrl}}" />
<img ng-src="{{item.userAvatarUrl}}" />
<span>{{item.timestamp | date:'medium'}}</span>
<p><a href="/umbraco/#/content/content/edit/{{item.nodeId}}">{{item.nodeName}}</a> <localize key="theDashboard_savedBy">saved by</localize> {{item.userDisplayName}} <localize key="theDashboard_butNotPublishedOrScheduled">but not published or scheduled</localize>.</p>
</div>
Expand Down