summaryrefslogtreecommitdiff
path: root/public/js/lib/views/room/userlist.js
blob: d638a02b9f5aee92c85b05015c8ec915b30f0c8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var UserlistView = View.extend({
  
  el: "#userlist",
  
  events: {
  },
  
  initialize: function(){
  },
  
  update: function(users){
    
  },
  
})