1/* Extra acrn-specific javascript */
2
3$(document).ready(function(){
4   /* tweak logo link to the marketing site instead of doc site */
5   $( ".icon-home" ).attr({href: "https://projectacrn.org/", target: "_blank"});
6
7   /* open external links in a new tab */
8   $('a[class*=external]').attr({target: '_blank', rel: 'noopener'});
9
10   /* copy image alt tags in config option page as title for hover text tool tip by browser */
11   $("div#scenario-configuration-options img[alt]").each(function(){
12       $(this).attr('title', $(this).attr('alt'));
13   });
14});
15