Open note image attachment in new tab
This commit is contained in:
parent
4da48868e5
commit
e49ec46461
2 changed files with 6 additions and 4 deletions
|
@ -13,9 +13,10 @@
|
||||||
= sanitize(markdown(truncate(event.target.note, length: 150)), tags: %w(a img b pre p))
|
= sanitize(markdown(truncate(event.target.note, length: 150)), tags: %w(a img b pre p))
|
||||||
- note = event.target
|
- note = event.target
|
||||||
- if note.attachment.url
|
- if note.attachment.url
|
||||||
= link_to note.attachment.secure_url, target: "_blank", class: 'note-file-attach' do
|
- if note.attachment.image?
|
||||||
- if note.attachment.image?
|
= link_to note.attachment.url, target: '_blank' do
|
||||||
= image_tag note.attachment.url, class: 'note-image-attach'
|
= image_tag note.attachment.url, class: 'note-image-attach'
|
||||||
- else
|
- else
|
||||||
|
= link_to note.attachment.secure_url, target: "_blank", class: 'note-file-attach' do
|
||||||
%i.icon-paper-clip
|
%i.icon-paper-clip
|
||||||
= note.attachment_identifier
|
= note.attachment_identifier
|
||||||
|
|
|
@ -51,7 +51,8 @@
|
||||||
- if note.attachment.url
|
- if note.attachment.url
|
||||||
.note-attachment
|
.note-attachment
|
||||||
- if note.attachment.image?
|
- if note.attachment.image?
|
||||||
= image_tag note.attachment.url, class: 'note-image-attach'
|
= link_to note.attachment.url, target: '_blank' do
|
||||||
|
= image_tag note.attachment.url, class: 'note-image-attach'
|
||||||
.attachment.pull-right
|
.attachment.pull-right
|
||||||
= link_to note.attachment.secure_url, target: "_blank" do
|
= link_to note.attachment.secure_url, target: "_blank" do
|
||||||
%i.icon-paper-clip
|
%i.icon-paper-clip
|
||||||
|
|
Loading…
Reference in a new issue