diff options
Diffstat (limited to 'assets/js/models/sample.js')
| -rw-r--r-- | assets/js/models/sample.js | 15 | 
1 files changed, 8 insertions, 7 deletions
| diff --git a/assets/js/models/sample.js b/assets/js/models/sample.js index 2c87344..228454b 100644 --- a/assets/js/models/sample.js +++ b/assets/js/models/sample.js @@ -7,7 +7,8 @@ ClipPlay.Models.Sample = Backbone.Model.extend({  		'key': '',  		'player': '',  		'iframe': '', -        'timeout' : '' +        'timeout' : '', +        'thumbnail' : ''  	},      initialize: function() {          var a = ClipPlay.Config['key_defaults'].shift(); @@ -20,26 +21,26 @@ ClipPlay.Models.Sample = Backbone.Model.extend({  		var minutes = Math.floor(seconds / 60);  		seconds = Math.floor(seconds);  		var seconds = seconds - minutes * 60; -		 +  		if (seconds < 10) {  			seconds = '0' + seconds;  		} -		 +  		return {  			minutes: minutes,  			seconds: seconds  		};  	}, -	 +  	start_in_minutes_and_seconds: function() {  		return this.in_minutes_and_seconds(this.get('start'));  	}, -	 +  	stop_in_minutes_and_seconds: function() {  		return this.in_minutes_and_seconds(this.get('stop'));  	}, -	 -	 + +  	play: function() {          console.log('playing');      //play then pause | 
