Summarization / static /hellopagejs.js
ikraamkb's picture
Update static/hellopagejs.js
5f0e25a verified
raw
history blame
438 Bytes
document.addEventListener('DOMContentLoaded', function () {
const SC = document.querySelector('.SC');
const QA = document.querySelector('.QA');
SC.addEventListener('click', function () {
window.location.href = '/summarization'; // Redirect to Summarization app
});
QA.addEventListener('click', function () {
window.location.href = '/qtAnswering'; // Redirect to Question Answering app
});
});