mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-29 04:59:29 +00:00
6 lines
233 B
CoffeeScript
Executable File
6 lines
233 B
CoffeeScript
Executable File
define ['backbone', 'models/comment/commentItem', 'app.lib/backbone.dss.model.collection'],
|
|
(Backbone, CommentItem, DssCollection) ->
|
|
class CommentCollection extends DssCollection
|
|
model: CommentItem
|
|
|
|
CommentCollection |