Skip to content

Commit

Permalink
Merge pull request #29 from dchallener/ResolveUrlBeforeLoad
Browse files Browse the repository at this point in the history
Resolve the Gravatar URL before image is loaded.
  • Loading branch information
enkelmedia authored Oct 27, 2017
2 parents 094101d + ca918df commit 2e04e71
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 2e04e71

Please sign in to comment.