summaryrefslogtreecommitdiffstats
path: root/assets/js/sample-editor.js
blob: 10f5a08def1d4a3b27a969d54eadec131d3e0ffb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
var SampleEditor = SampleEditor || {};

(function($) {
	SampleEditor = function() {
		this.initialize = function() {
			var $clip_line = $('.js-clip-line');
			
			$clip_line.draggable({
				axis: 'x',
				handle: '.js-drag-handle',
				scroll: false,
				containment: $clip_line.parents('.progress-bar')
			});
		};
		
		
		return this;
	};
})(jQuery);