fix not working dark mode

This commit is contained in:
janis
2023-01-23 16:54:22 +01:00
parent c87fdfcef5
commit e81ca0dceb
3 changed files with 14 additions and 6 deletions

View File

@@ -3,9 +3,9 @@
<head> <head>
<title>Getting Started - impress.js</title> <title>Getting Started - impress.js</title>
<!--I am using jquery for button animations.--> <!--I am using jquery for button animations.-->
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script defer src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js" crossorigin="anonymous" referrerpolicy="no-referrer"></script> <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script defer src="/js/docs/loader.js"></script> <script src="/js/docs/loader.js"></script>
<link rel="stylesheet" href="/css/docs/style.css"> <link rel="stylesheet" href="/css/docs/style.css">
</head> </head>
<body> <body>

View File

@@ -3,9 +3,9 @@
<head> <head>
<title>Docs - impress.js</title> <title>Docs - impress.js</title>
<!--I am using jquery for button animations.--> <!--I am using jquery for button animations.-->
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script defer src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js" crossorigin="anonymous" referrerpolicy="no-referrer"></script> <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script defer src="/js/docs/loader.js"></script> <script src="/js/docs/loader.js"></script>
<link rel="stylesheet" href="/css/docs/style.css"> <link rel="stylesheet" href="/css/docs/style.css">
</head> </head>
<body> <body>

View File

@@ -36,4 +36,12 @@ for ( let item in plugins ) {
function parseJS ( filepath ) { function parseJS ( filepath ) {
console.log( 'no readme found' ); console.log( 'no readme found' );
let jsFiles = fs.readdirSync( filepath ); let jsFiles = fs.readdirSync( filepath );
}
function checkLinks ( html ) {
}
function storeHTML ( html, path ) {
} }