2017-06-07 19:23:20 +02:00

7 lines
143 B
JavaScript

$(function() {
var handleNewWindow = function() {
this.target = '_blank';
}
$('div.attachments a, a.external').each(handleNewWindow);
});