UNPKG
autograph
Version:
latest (0.1.5)
0.1.5
0.1.0
A visual data routing automation tool.
github.com/jbeuckm/AutoGraph
jbeuckm/AutoGraph
autograph
/
src
/
collections
/
ComponentCollection.js
14 lines
(11 loc)
•
251 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** *
@module
ComponentCollection */
define
([
'backbone'
,
'components/models/BaseComponent'
], function (Backbone, BaseComponent) {
/** *
@constructor
*/
return
Backbone.Collection.
extend
({
model
: BaseComponent }); });