Clean Coffeescript Code

Callback as separate function

HTML

<div id="clickme"></div>

CSS

#clickme {
    width: 100px;
    height: 100px;
    background-color: lightgreen;
}

CoffeeScript

class @Example

    constructor: ->
        @registerListeners()
    
    registerListeners: ->
        $('#clickme').on 'click', $.proxy @clicked, @

    clicked: ->
      console.log 'clicked'

new Example()