mirror of https://github.com/codefeathers/window
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					18 lines
				
				317 B
			
		
		
			
		
	
	
					18 lines
				
				317 B
			| 
											8 years ago
										 | 'use strict'; | ||
|  | 
 | ||
|  | const slideHelper = require('./slideHelper'); | ||
|  | 
 | ||
|  | class Slider { | ||
|  | 	constructor (options) { | ||
|  | 		this.windowSize = options.size; | ||
|  | 		this.prefer = options.prefer; | ||
|  | 		this.accepting = options.accepting; | ||
|  | 	} | ||
|  | 
 | ||
|  | 	slide (host, guest) { | ||
|  | 		return slideHelper(this.windowSize, host, guest); | ||
|  | 	} | ||
|  | }; | ||
|  | 
 | ||
|  | module.exports = Slider; |