mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-03 05:56:57 +00:00
The sphinx_rtd_theme 1.0 includes simplified configuration for Google analytics, along with general fixes and improvements. Anyone publishing project documentation to projectacrn.github.io must be using this updated sphinx_rtd_theme for Google Analytics data to be properly collected. * Switch to use this new theme version, and clean up the previous method of collecting analytics data. * Update requirements.txt to use this new theme version. Update the show-versions.py script (used to report on installed doc building tools) to also report if there's a mismatch on which version is expected (in requirements.txt) and what's currently installed. Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
10 lines
333 B
JavaScript
10 lines
333 B
JavaScript
/* Extra acrn-specific javascript */
|
|
|
|
$(document).ready(function(){
|
|
/* tweak logo link to the marketing site instead of doc site */
|
|
$( ".icon-home" ).attr({href: "https://projectacrn.org/", target: "_blank"});
|
|
|
|
/* open external links in a new tab */
|
|
$('a[class*=external]').attr({target: '_blank', rel: 'noopener'});
|
|
});
|