Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion postdoc.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default {
},

apidocs: {
source: API_DOCS_FOLDER,
source: false,
layout: 'api/index.ejs',

createUrl(filePath) {
Expand Down
6 changes: 5 additions & 1 deletion src/includes/footer.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@
<div class="footer__wrapper-bottom-text">
<p class="footer__wrapper-bottom-text-about">Nightwatch was established in 2014 and since 2021 it is actively maintained at <a href="https://browserstack.com/" target="_blank" rel="noopener noreferrer">BrowserStack</a> with the help of all our <a href="https://github.com/nightwatchjs/nightwatch/graphs/contributors" target="_blank" rel="noopener noreferrer">contributors</a>.</p>

<p class="footer__wrapper-bottom-text-copywright">&copy; 2023 <a href="https://browserstack.com/" target="_blank"
<p class="footer__wrapper-bottom-text-copywright">&copy; <span id="copyRightYear"></span> <a href="https://browserstack.com/" target="_blank"
rel="noopener noreferrer">BrowserStack</a> Limited • Code licensed under the
<a href="https://github.com/nightwatchjs/nightwatch/blob/main/LICENSE.md" target="_blank" rel="noopener noreferrer">MIT License</a>.
</p>
Expand All @@ -341,4 +341,8 @@
</footer>

<script type="module" src="/src/js/dropdown.js"></script>
<script>
var copyRightYear = document.getElementById("copyRightYear")
copyRightYear.textContent = new Date().getFullYear()
</script>
<%- include('docsearch') %>