Skip to content
Closed
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
8 changes: 7 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ <h2 class="mb-30">Sign-up for the newsletter!</h2>
<div class="col-lg-5 col-sm-6">
<aside class="f_widget ab_widget">
<div class="f_title">
<h3 style="margin-left: -10px;">Copyright © 2023 Keploy Inc.</h3>
<h3 style="margin-left: -10px;">Copyright © <span id="current-year"></span> Keploy Inc.</h3>
</div>
<p style="font-family:'Inconsolata', monospace;">Developers experience for e2e testing. Toolkit that creates test-cases and data mocks from API calls, DB queries, etc.</p>
</aside>
Expand Down Expand Up @@ -895,6 +895,12 @@ <h3>Find us on</h3>
// event.preventDefault();
// }
// });
document.addEventListener('DOMContentLoaded', function() {
var yearElem = document.getElementById('current-year');
if (yearElem) {
yearElem.textContent = new Date().getFullYear();
}
});
</script>
</div>
</body>
Expand Down