// ==UserScript==
// @name        Tab Focus through VA Platform Documentation Search Results
// @description Use the tab key to navigate through VA Platform Documentation Search Results
// @version     1.0.0
// @match       *://depo-platform-documentation.scrollhelp.site/search.html*
// @include     *://depo-platform-documentation.scrollhelp.site/search.html*
// @grant       none
// @author      ericboehs eric@boehs.com
// @namespace   ericboehs
// ==/UserScript==
(function () {
'use strict';

function init() {
  document.querySelectorAll('.vp-search-result a')[0].focus();
}

if (document.querySelector('.vp-search-result a')) {
	init();
} else {
	setTimeout(init, 500);

  if (!document.activeElement.classList.contains('vp-search-result__title')) {
    setTimeout(init, 500);
  }
}

})();