mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-08 18:06:10 +00:00
7 lines
186 B
CoffeeScript
7 lines
186 B
CoffeeScript
define ['marionette'],
|
|
(Marionette)->
|
|
class GenericView extends Marionette.ItemView
|
|
initialize: (options)->
|
|
@template = _.template(options.template)
|
|
|
|
true |