mirror of
https://github.com/pybricks/pybricks-api.git
synced 2026-09-12 17:46:19 +00:00
This adds a hack to open external links in a new window. Requires Sphinx v1.8.
5 lines
185 B
JavaScript
5 lines
185 B
JavaScript
// https://stackoverflow.com/a/62742435/1976323
|
|
$(document).ready(function () {
|
|
$('a[href^="http://"], a[href^="https://"]').not('a[class*=internal]').attr('target', '_blank');
|
|
});
|