mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-03-19 18:25:53 +00:00
Merge pull request #2289 from pixelfed/staging
Updated NotificationCard, improve popover image scaling
This commit is contained in:
commit
76b91039e2
4 changed files with 4 additions and 4 deletions
|
@ -51,7 +51,7 @@
|
|||
- Updated Profile component, add bookmark loader ([c8d5edc9](https://github.com/pixelfed/pixelfed/commit/c8d5edc9))
|
||||
- Updated PostComponent, add recent posts ([b289f2f6](https://github.com/pixelfed/pixelfed/commit/b289f2f6))
|
||||
- Updated ApiV1Controller, add status ancestor and descendant context ([a0bde855](https://github.com/pixelfed/pixelfed/commit/a0bde855))
|
||||
|
||||
- Updated NotificationCard, improve popover image scaling ([0153e596](https://github.com/pixelfed/pixelfed/commit/0153e596))
|
||||
|
||||
## [v0.10.9 (2020-04-17)](https://github.com/pixelfed/pixelfed/compare/v0.10.8...v0.10.9)
|
||||
### Added
|
||||
|
|
2
public/js/timeline.js
vendored
2
public/js/timeline.js
vendored
File diff suppressed because one or more lines are too long
|
@ -27,5 +27,5 @@
|
|||
"/js/status.js": "/js/status.js?id=c37420a47bae3a1f52fb",
|
||||
"/js/story-compose.js": "/js/story-compose.js?id=18ed9fcdfed5eb63d113",
|
||||
"/js/theme-monokai.js": "/js/theme-monokai.js?id=3b6e62701f12b717cc5c",
|
||||
"/js/timeline.js": "/js/timeline.js?id=8abcd6ea1a266d3c2fd6"
|
||||
"/js/timeline.js": "/js/timeline.js?id=6f42c9116c0427029376"
|
||||
}
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
<span v-if="n.status.hasOwnProperty('media_attachments')">
|
||||
<a class="font-weight-bold" v-bind:href="n.status.url" :id="'fvn-' + n.id">post</a>.
|
||||
<b-popover :target="'fvn-' + n.id" title="" triggers="hover" placement="top" boundary="window">
|
||||
<img :src="notificationPreview(n)" width="100px" height="100px">
|
||||
<img :src="notificationPreview(n)" width="100px" height="100px" style="object-fit: cover;">
|
||||
</b-popover>
|
||||
</span>
|
||||
<span v-else>
|
||||
|
|
Loading…
Add table
Reference in a new issue