ikraamkb commited on
Commit
d2df7d7
·
verified ·
1 Parent(s): 146ed07

Update static/appS.js

Browse files
Files changed (1) hide show
  1. static/appS.js +6 -0
static/appS.js CHANGED
@@ -259,4 +259,10 @@ document.addEventListener('DOMContentLoaded', () => {
259
  }
260
  `;
261
  document.head.appendChild(style);
 
 
 
 
 
 
262
  });
 
259
  }
260
  `;
261
  document.head.appendChild(style);
262
+
263
+
264
+ var backarrow = document.querySelector(".fa-arrow-left")
265
+ backarrow.addEventListener('click', function () {
266
+ window.location.href = '/hellopage.html'; // Redirect to Question Answering app
267
+ });
268
  });