Skip to content

Instantly share code, notes, and snippets.

@huydinh
huydinh / baseGanttChart.js.coffee
Created January 20, 2014 06:46
Code samples for Arthur
class window.BaseGanttChart
constructor: (elementId) ->
@elementId = elementId
createDurations: () ->
throw new Error "Need to implement this method in child class"
deleteDurations: () ->
window.location.hash = '#/confirmDelete'
class @DashboardView extends Backbone.View
events:
'click #dashboardContent': '_navigateTab'
initialize: ->
super()
_navigateTab: ->
alert(1)