mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-23 23:20:57 +01:00
Open image identification links in new tabs
This commit is contained in:
parent
c6e1afcf65
commit
31f0c1f1e3
@ -119,9 +119,6 @@ form table tr td div label {
|
||||
.file:not(.multifile) {
|
||||
float: none;
|
||||
}
|
||||
.multifile {
|
||||
padding-right: 20px;
|
||||
}
|
||||
p.fileinfo {
|
||||
display: block;
|
||||
margin: 0 0 0 20px;
|
||||
|
@ -2,16 +2,16 @@
|
||||
|
||||
<span class='image_id'>
|
||||
{% if config.image_identification_imgops %}
|
||||
<a href="http://imgops.com/{{ config.domain }}{{ config.uri_img }}{{ file.file }}">ImgOps</a>
|
||||
<a href="http://imgops.com/{{ config.domain }}{{ config.uri_img }}{{ file.file }}" target="_blank">ImgOps</a>
|
||||
{% endif %}
|
||||
{% if config.image_identification_exif and file.file|extension == 'jpg' %}
|
||||
<a href="http://regex.info/exif.cgi?url={{ config.domain }}{{ config.uri_img }}{{ file.file }}">Exif</a>
|
||||
<a href="http://regex.info/exif.cgi?url={{ config.domain }}{{ config.uri_img }}{{ file.file }}" target="_blank">Exif</a>
|
||||
{% endif %}
|
||||
{% if config.image_identification_google %}
|
||||
<a href="https://www.google.com/searchbyimage?image_url={{ config.domain }}{{ config.uri_img }}{{ file.file }}">Google</a>
|
||||
<a href="https://www.google.com/searchbyimage?image_url={{ config.domain }}{{ config.uri_img }}{{ file.file }}" target="_blank">Google</a>
|
||||
{% endif %}
|
||||
{% if config.image_identification_iqdb %}
|
||||
<a href="http://iqdb.org/?url={{ config.domain }}{{ config.uri_img }}{{ file.file }}">iqdb</a>
|
||||
<a href="http://iqdb.org/?url={{ config.domain }}{{ config.uri_img }}{{ file.file }}" target="_blank">iqdb</a>
|
||||
{% endif %}
|
||||
</span>
|
||||
{% endif %}
|
||||
|
Loading…
Reference in New Issue
Block a user