| 
														
															@@ -1,10 +1,13 @@ 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 import { h, Component } from 'preact'; 
														 | 
														
														 | 
														
															 import { h, Component } from 'preact'; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 import videojs from 'video.js'; 
														 | 
														
														 | 
														
															 import videojs from 'video.js'; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 import 'videojs-playlist'; 
														 | 
														
														 | 
														
															 import 'videojs-playlist'; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+import 'videojs-seek-buttons'; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 import 'video.js/dist/video-js.css'; 
														 | 
														
														 | 
														
															 import 'video.js/dist/video-js.css'; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+import 'videojs-seek-buttons/dist/videojs-seek-buttons.css'; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															  
														 | 
														
														 | 
														
															  
														 | 
													
												
											
												
													
														| 
														 | 
														
															 const defaultOptions = { 
														 | 
														
														 | 
														
															 const defaultOptions = { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															   controls: true, 
														 | 
														
														 | 
														
															   controls: true, 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+  playbackRates: [0.5, 1, 2, 4, 8], 
														 | 
													
												
											
												
													
														| 
														 | 
														
															   fluid: true, 
														 | 
														
														 | 
														
															   fluid: true, 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 }; 
														 | 
														
														 | 
														
															 }; 
														 | 
													
												
											
												
													
														| 
														 | 
														
															  
														 | 
														
														 | 
														
															  
														 | 
													
												
											
										
											
												
													
														 | 
														
															@@ -18,6 +21,10 @@ export default class VideoPlayer extends Component { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															     this.player = videojs(this.videoNode, videoJsOptions, function onPlayerReady() { 
														 | 
														
														 | 
														
															     this.player = videojs(this.videoNode, videoJsOptions, function onPlayerReady() { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															       onReady(this); 
														 | 
														
														 | 
														
															       onReady(this); 
														 | 
													
												
											
												
													
														| 
														 | 
														
															     }); 
														 | 
														
														 | 
														
															     }); 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+    this.player.seekButtons({ 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+      forward: 30, 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+      back: 15, 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+    }); 
														 | 
													
												
											
												
													
														| 
														 | 
														
															   } 
														 | 
														
														 | 
														
															   } 
														 | 
													
												
											
												
													
														| 
														 | 
														
															  
														 | 
														
														 | 
														
															  
														 | 
													
												
											
												
													
														| 
														 | 
														
															   componentWillUnmount() { 
														 | 
														
														 | 
														
															   componentWillUnmount() { 
														 |