mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-11 00:56:33 +01:00
Modernize Doxygen HTML
using https://github.com/jothepro/doxygen-awesome-css.git
This commit is contained in:
parent
5b746b186a
commit
c2e048547a
13 changed files with 3519 additions and 14 deletions
|
|
@ -0,0 +1,12 @@
|
|||
|
||||
let original_theme_active = true;
|
||||
|
||||
function toggle_alternative_theme() {
|
||||
if(original_theme_active) {
|
||||
document.documentElement.classList.add("alternative")
|
||||
original_theme_active = false;
|
||||
} else {
|
||||
document.documentElement.classList.remove("alternative")
|
||||
original_theme_active = true;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue