Redirect to URL from CoffeeScript

4.3k Views Asked by At

I'm trying to add a button to an app that uses Crafty, but, unlike the other buttons, I want this one to redirect the user to a different URL.

Notice that no-one ever taught me how to use Coffee or JavaScript, so I'm really new.

I'm trying to use the redirection here:

cfg.onClickTeacher = -> 
      preloadScene(CFG.ASSETS_MAIN, -> "www.my-site/teacher")

But it's not working, so, what do I have to do?

1

There are 1 best solutions below

0
On BEST ANSWER

That doesn’t involve Crafty, and is the same as in JavaScript.

cfg.onClickTeacher = ->
    window.location.href = 'http://example.com/'

(Relative URLs work too.)