summaryrefslogtreecommitdiffstats
path: root/assets/js/sample.js
blob: 1784e8610cedd8f4dbdf3e9df5feb4490b7df0c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
function Sample(url){
  this.url = url;
  this.start;
  this.stop;
  this.duration;
  this.key;
  this.player; //the associated player obj w the iframe
  this.init();
  this.id;
}

Sample.prototype.init(){
  //create the iframe

  //create the player

}

Sample.prototype.play = function(){

}

//getting and setting from UI
Sample.prototype.update = function(){

}