jumbatm / cloud-path-tracer

A toy online path tracing service.
GNU General Public License v3.0
0 stars 1 forks source link

Implement redirect to the rendered image page. #11

Closed jumbatm closed 5 years ago

jumbatm commented 5 years ago

Once the user has uploaded a JSON file and the scene information cache has the file, the server needs to send the client to the page where their rendered image will show up.

Related to #3, #5

jumbatm commented 5 years ago

A quick Google online shows that, on the client side, you can use window.location = ${url}; to trigger a redirect to another page.