mirror of
https://github.com/Start9Labs/documentation.git
synced 2026-03-26 10:21:53 +00:00
12 lines
476 B
JavaScript
12 lines
476 B
JavaScript
$(document).ready(function () {
|
|
// open external links in separate tab
|
|
$('a[href^="http://"], a[href^="https://"]').not('a[class*=internal]').attr('target', '_blank');
|
|
// toggle hidable sections
|
|
$(".toggle > *").hide();
|
|
$(".toggle .admonition-title").show();
|
|
$(".toggle .admonition-title").click(function() {
|
|
$(this).parent().children().not(".admonition-title").toggle(400);
|
|
$(this).parent().children(".admonition-title").toggleClass("open");
|
|
})
|
|
});
|