bigbluebutton-Github/labs/html5-embed/public/js/collections/users.js

17 lines
270 B
JavaScript
Raw Normal View History

2012-10-26 05:12:21 +08:00
define([
'jquery',
'underscore',
'backbone',
'models/user'
], function($, _, Backbone, UserModel){
var UserCollection = Backbone.Collection.extend({
model: UserModel,
initialize: function(){
}
});
return UserCollection;
});