Merge pull request #557 from taigaio/issue/2884/crop-images-for-timeline
Issue#2884: Crop images for the timelinestable
commit
708f6a05a6
|
@ -7,6 +7,7 @@
|
||||||
- Ability to create single-line or multi-line custom fields. (thanks to [@artlepool](https://github.com/artlepool))
|
- Ability to create single-line or multi-line custom fields. (thanks to [@artlepool](https://github.com/artlepool))
|
||||||
|
|
||||||
### Misc
|
### Misc
|
||||||
|
- Improve performance: Show cropped images in timelines.
|
||||||
- Lots of small and not so small bugfixes.
|
- Lots of small and not so small bugfixes.
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2,4 +2,4 @@
|
||||||
div.activity-image-attachment
|
div.activity-image-attachment
|
||||||
blockquote
|
blockquote
|
||||||
a(href="{{::attachment.url}}", title="See {{::attachment.filename}}", target="_blank")
|
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}}")
|
||||||
|
|
Loading…
Reference in New Issue