summaryrefslogtreecommitdiff
path: root/public/js/lib/views/room/playlist.js
blob: 6da6ff9aa278e44b444266e038c66ac7da094d0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
var PlaylistView = View.extend({
  
  el: "#playlist",
  
  playlist: [],
  
  initialize: function(){
  },
  
  prev: function(){
  },
  next: function(){
  },
  go: function(n){
  },
  
})