mirror of
https://github.com/fergalmoran/dss.git
synced 2026-04-04 20:05:03 +00:00
10 lines
304 B
CoffeeScript
Executable File
10 lines
304 B
CoffeeScript
Executable File
define ['marionette', 'text!/tpl/ActivityListItemView'],
|
|
(Marionette, Template) ->
|
|
class ActivityItemView extends Marionette.ItemView
|
|
template: _.template(Template)
|
|
tagName: "div"
|
|
|
|
onRender: (itemView) ->
|
|
$(itemView.el).addClass('animated flash')
|
|
true
|