I have a coffeescript class that has some jquery event listeners. I would like to use the fat arrow => to avoid having to reference the class, but I still ne
=>
I prefer this version, because I can understand it more easily.
class PostForm constructor: -> post_form = this $('ul.tabs li').on 'click', (event) -> tab = $(this) post_form.highlight_tab(tab)