17 lines
282 B
JavaScript
Executable File
17 lines
282 B
JavaScript
Executable File
define([
|
|
'jquery',
|
|
'underscore',
|
|
'backbone',
|
|
'models/chat'
|
|
], function($, _, Backbone, ChatMessageModel){
|
|
var ChatMessageCollection = Backbone.Collection.extend({
|
|
model: ChatMessageModel,
|
|
initialize: function(){
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return ChatMessageCollection;
|
|
});
|