mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 03:16:10 +00:00
5 lines
141 B
JavaScript
5 lines
141 B
JavaScript
|
|
||
|
// Make sure that external links are opened in new tabs
|
||
|
$(document).ready(function() {
|
||
|
$("a[href^='http']").attr('target','_blank');
|
||
|
});
|