diff options
| author | Hunternif <hunternif@gmail.com> | 2022-10-03 01:49:25 +0100 |
|---|---|---|
| committer | Hunternif <hunternif@gmail.com> | 2022-10-03 01:49:25 +0100 |
| commit | 4be959b05746d6f2360b0d8d6b0af94f94aebb8a (patch) | |
| tree | 59ae0452a38bacab3b627009b4779bb7d61cdc0a /client | |
| parent | 877046ea1bd8dc369a8ab9dc0da9bcfaf16ecda2 (diff) | |
client: open search links in new tab
Diffstat (limited to 'client')
| -rw-r--r-- | client/html/post_readonly_sidebar.tpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/html/post_readonly_sidebar.tpl b/client/html/post_readonly_sidebar.tpl index ac22580..1cae84f 100644 --- a/client/html/post_readonly_sidebar.tpl +++ b/client/html/post_readonly_sidebar.tpl @@ -55,9 +55,9 @@ <section class='search'> Search on - <a href='http://iqdb.org/?url=<%- encodeURIComponent(ctx.post.fullContentUrl) %>'>IQDB</a> · - <a href='https://danbooru.donmai.us/posts?tags=md5:<%- ctx.post.checksumMD5 %>'>Danbooru</a> · - <a href='https://www.google.com/searchbyimage?&image_url=<%- encodeURIComponent(ctx.post.fullContentUrl) %>'>Google Images</a> + <a target="_blank" href='http://iqdb.org/?url=<%- encodeURIComponent(ctx.post.fullContentUrl) %>'>IQDB</a> · + <a target="_blank" href='https://danbooru.donmai.us/posts?tags=md5:<%- ctx.post.checksumMD5 %>'>Danbooru</a> · + <a target="_blank" href='https://www.google.com/searchbyimage?&image_url=<%- encodeURIComponent(ctx.post.fullContentUrl) %>'>Google Images</a> </section> <section class='social'> |