mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-18 19:06:10 +00:00
d964594498
* Improve contribution guidelines
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');
|
|
}); |