diff options
| author | Misko Hevery | 2010-10-22 14:27:03 -0700 |
|---|---|---|
| committer | Misko Hevery | 2010-10-22 14:27:03 -0700 |
| commit | 1efef67b5fc8e4b6789d9c78f5bd635bca2a1951 (patch) | |
| tree | e44c752d051c79f7b71e204e63985c198145ebb7 /example/buzz/buzz.html | |
| parent | a6cfa43c19e6a5940e5c5a79d0bdc93c89781aa0 (diff) | |
| download | angular.js-1efef67b5fc8e4b6789d9c78f5bd635bca2a1951.tar.bz2 | |
corrected buzz.html to use ng:src on images to prevent sporious browser requests/errors
Diffstat (limited to 'example/buzz/buzz.html')
| -rw-r--r-- | example/buzz/buzz.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/example/buzz/buzz.html b/example/buzz/buzz.html index a6777ff8..8e2f4f83 100644 --- a/example/buzz/buzz.html +++ b/example/buzz/buzz.html @@ -23,7 +23,7 @@ <ul> <li ng:repeat="item in activities.data.items.$filter(filterText)"> <h1> - <img src="{{item.actor.thumbnailUrl}}"/> + <img ng:src="{{item.actor.thumbnailUrl}}"/> <a href="{{item.actor.profileUrl}}">{{item.actor.name}}</a> <a href="#" ng:click="expandReplies(item)">Replies: {{item.links.replies[0].count}}</a> </h1> @@ -31,14 +31,14 @@ {{item.object.content | html}} <div> <a href="{{attachment.links.enclosure[0].href}}" ng:repeat="attachment in item.object.attachments"> - <img src="{{attachment.links.preview[0].href}}"/> + <img ng:src="{{attachment.links.preview[0].href}}"/> </a> </div> </div> <my:expand expand="item.replies.show"> <ul> <li ng:repeat="reply in item.replies.data.items"> - <img src="{{reply.actor.thumbnailUrl}}"/> + <img ng:src="{{reply.actor.thumbnailUrl}}"/> <a href="{{reply.actor.profileUrl}}">{{reply.actor.name}}</a>: {{reply.content | html}} </li> |
