Merge pull request #557 from taigaio/issue/2884/crop-images-for-timeline

Issue#2884: Crop images for the timeline
stable
David Barragán Merino 2015-07-02 18:27:52 +02:00
commit 708f6a05a6
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@
- Ability to create single-line or multi-line custom fields. (thanks to [@artlepool](https://github.com/artlepool))
### Misc
- Improve performance: Show cropped images in timelines.
- Lots of small and not so small bugfixes.

View File

@ -2,4 +2,4 @@
div.activity-image-attachment
blockquote
a(href="{{::attachment.url}}", title="See {{::attachment.filename}}", target="_blank")
img(ng-src="{{::attachment.url}}", alt="{{::attachment.filename}}")
img(ng-src="{{::attachment.thumb_url || attachment.url}}", alt="{{::attachment.filename}}")