Skip to content

Instantly share code, notes, and snippets.

View slam-it's full-sized avatar

Sander Lammertink slam-it

  • Slam-IT
  • Ede, The Netherlands
View GitHub Profile
@slam-it
slam-it / health.coffee
Last active April 16, 2016 08:12
Dashing Widget - Jira Health
class Dashing.Health extends Dashing.Canvasjs
ready: ->
@chart @get('container'), @get('chartData'), @get('title')
@addClass()
onData: (data) ->
@chart @get('container'), @get('chartData'), @get('title')
@addClass()
@slam-it
slam-it / burndown.coffee
Last active December 8, 2016 11:56
Jira Burndown Dashing Widget
class Dashing.Burndown extends Dashing.Canvasjs
ready: ->
@chart @get('container'), @get('data'), @get('title')
onData: (data) ->
@chart @get('container'), @get('data'), @get('title')