diff options
| author | Adam Tauber <asciimoo@gmail.com> | 2016-02-10 18:04:04 +0100 |
|---|---|---|
| committer | Adam Tauber <asciimoo@gmail.com> | 2016-02-10 18:04:04 +0100 |
| commit | ab6a7601cbdbdd93fa07ec6405bc3167f392b792 (patch) | |
| tree | b6a99e8bbc3bb92cc3c5cf9b24f78ad2b12def76 /searx/static/plugins/js | |
| parent | 2b53ac979d42d431a6e2e257680a7eba66285cb6 (diff) | |
[enh] new plugin to open results on new browser tabs
Diffstat (limited to 'searx/static/plugins/js')
| -rw-r--r-- | searx/static/plugins/js/open_results_on_new_tab.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/searx/static/plugins/js/open_results_on_new_tab.js b/searx/static/plugins/js/open_results_on_new_tab.js new file mode 100644 index 000000000..99ef382a0 --- /dev/null +++ b/searx/static/plugins/js/open_results_on_new_tab.js @@ -0,0 +1,3 @@ +$(document).ready(function() { + $('.result_header > a').attr('target', '_blank'); +}); |