Skip to content

Commit

Permalink
Fixes text casing
Browse files Browse the repository at this point in the history
Signed-off-by: Akash Manohar J <[email protected]>
  • Loading branch information
HashNuke committed Apr 10, 2012
1 parent e16657c commit 2fd9647
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/assets/javascripts/backbone/data/channels.js.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ class Kandan.Data.Channels
@runCallbacks: (event)->
callback() for callback in @callbacks[event]

@register_callback: (event, callback)->
@registerCallback: (event, callback)->
@callbacks[event].push(callback)

@unregister_callback: (event, callback)->
@unregisterCallback: (event, callback)->
delete @callbacks[@callbacks.indexOf(callback)]
@callbacks.filter (element, index, array)->
element!=undefined

0 comments on commit 2fd9647

Please sign in to comment.