summaryrefslogtreecommitdiff
path: root/public/javascripts/lazar-gui.js
blob: 60602c603da97c0baef16b1f9db841158366ff59 (plain)
1
2
3
4
5
6
7
8
9
10
11
$(document).ready(function() {
  addExternalLinks();
});

addExternalLinks = function() {
  $('A[rel="external"]').each(function() {
    $(this).attr('alt', 'Link opens in new window.');
    $(this).attr('title', 'Link opens in new window.');
    $(this).attr('target', '_blank');
  });
};