summaryrefslogtreecommitdiff
path: root/templates/widget/%name%/%name%.coffee.tt
blob: 5ddfb1b42db9cd2aa49f1476b230f95a02d523d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
class AllTheThings.<%= Thor::Util.camel_case(name) %> extends AllTheThings.Widget
  source: '<%= name %>'

  ready: ->
    # This is fired when the widget is done being rendered

  onData: (data) ->
    # Handle incoming data
    # You can access the html node of this widget with `@node`
    # Example: $(@node).effect("pulsate") will make the node flash each time data comes in.
    super