7 lines
195 B
JavaScript
7 lines
195 B
JavaScript
|
define(['collection', 'text!specificCollection.html'], function (collection, html) {
|
||
|
return {
|
||
|
name: 'specificCollection',
|
||
|
html: html,
|
||
|
collection: collection
|
||
|
};
|
||
|
});
|