im_merlin

Bo Staff Q and A - PDF

May 19th, 2020
1,874
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.45 KB | None | 0 0
  1. async function handleRequest(request) {
  2.   const init = {
  3.     headers: {
  4.       'content-type': 'text/html;charset=UTF-8',
  5.     },
  6.   }
  7.   return new Response(someHTML, init)
  8. }
  9. addEventListener('fetch', event => {
  10.   return event.respondWith(handleRequest(event.request))
  11. })
  12. const someHTML =  `<!DOCTYPE html>
  13. <html>
  14.   <body>
  15.   <iframe src="http://s3.amazonaws.com/bo-staff/Bo-Staff-Q-and-A.pdf" width="100%" height="500px"></iframe>
  16.   </body>
  17. </html>
  18. `
Advertisement
Add Comment
Please, Sign In to add comment