game completed - redirection

how i can add a redirection, after the user win the game? 

where in the js i can add some like window.location.replace("http://url.com");

 

thanks for the help!

 

Alejandro

icc's picture

This is the code:

H5P.externalDispatcher.on('xAPI', function (e) { 
  if (e.data.statement.result) { 
    window.location.href="https://h5p.org"; 
  } 
});

You can add it to any .js file on your page.