83:02495e40ccde
Anton Shestakov <av6@dwimlabs.net>, Sun, 03 Apr 2016 12:29:29 +0800
tram: new possible pip color (chat), add another pip to the sidebar

next change 86:6f227227ac6f
previous change 80:addc62773413

coffee/sidebar.coffee

Permissions: -rw-r--r--

Other formats: Feeds:
class window.Tram.SidebarApp extends Backbone.View
colors: Tram.colors.show
initialize: ->
@render()
getPipColor: (show) =>
"background: #{ @colors[show] || @colors['default'] };"
show: (event) =>
$btn = $(event.currentTarget)
show = $btn.attr('data-show')
status = $btn.text()
@model.trigger('show', show, status)
disconnect: =>
@model.trigger('disconnect')
render: (model) ->
@rivet = rivets.bind(@el, model: @model, view: this)
@
remove: ->
@rivet.unbind()
super