<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">(function($) {
  
  $(document).ready(function() {
    
    var trusted_hosts = [
      "https://tucsonfcu.com",
      "https://www.tucsonfcusecure.com",
      "https://internetloanapplication.cudl.com",
      "https://tucsonfcu-cloud.lending360.com",
      "https://stearns.com/tucsonfcu",
      "http://www.diproductsite.com",
      "https://recruiting2.ultipro.com",
      "https://www04.timetrade.com",
      "https://tucsonfcu.insuranceaisle.com",
      "https://service.liveperson.net",
      "https://tucsonfcu.cusonet.com",
      "https://na2.docusign.net/Member/PowerFormSigning.aspx?PowerFormId=94d94496-6261-4630-84e3-80be8ed6f15c&amp;env=na2&amp;acct=99545b70-4a1a-4610-b620-9c9cb46b3ac1",
      "https://google.com",
      "https://trustandwill.com/"
    ].map(x =&gt; getHostName(x));
    
    var url = document.location.hostname;
    
    $('a[href*="http"]:not([href*="'+url+'"])').each(function() {
      if(trusted_hosts.includes(getHostName($(this).attr('href'))) || $(this).hasClass('js-trigger') ) {
      }
      else {
        $(this).on('mousedown touch', function(e) {
          openOutgoing(e, $(this));
        });
      }
    });

    function openOutgoing(e, o_el) {
      
      if( o_el.parent('li').hasClass('skip-leavingTFCU') ) {
        return true;
      }
      else if( o_el.hasClass('skip-leavingTFCU')) {
        return true;
      }
      else {
        el_m = $('.leavingTFCU.modal');
        el_a = $('.outgoing', el_m);
        el_a.attr('href', o_el.attr('href'));
        el_a.attr('target', o_el.attr('target'));
        e.preventDefault();
        el_m.modal('show');
      }
    }
    
    function getHostName(url) {
      var match = url.match(/:\/\/(www[0-9]?\.)?(.[^/:]+)/i);
      if (match != null &amp;&amp; match.length &gt; 2 &amp;&amp; typeof match[2] === 'string' &amp;&amp; match[2].length &gt; 0) {
        return match[2];
      }
      else {
        return null;
      }
    }
    
  });
  
})( jQuery );</pre></body></html>