1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

vdoc: move to it's own directory cmd/tools/vdoc/ (#7606)

This commit is contained in:
Daniel Däschle
2020-12-27 13:43:23 +01:00
committed by GitHub
parent c9081a8df8
commit 929a002229
26 changed files with 5 additions and 4 deletions

View File

@ -0,0 +1,6 @@
(function() {
var html = document.getElementsByTagName('html')[0];
if (localStorage.getItem('dark-mode') === 'true') {
html.classList.add('dark');
}
})();