fixed a problem in the function isFirstSlide
when visiting a vertical slide and then going back to the first slide, the function would return false. made it more fail proof by checking the indices directly.edit
							parent
							
								
									d072be2f57
								
							
						
					
					
						commit
						cb4fe35bac
					
				| 
						 | 
					@ -3902,7 +3902,7 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		// Returns true if we're currently on the first slide
 | 
							// Returns true if we're currently on the first slide
 | 
				
			||||||
		isFirstSlide: function() {
 | 
							isFirstSlide: function() {
 | 
				
			||||||
			return document.querySelector( SLIDES_SELECTOR + '.past' ) == null ? true : false;
 | 
								return ( indexh == 0 && indexv == 0 );
 | 
				
			||||||
		},
 | 
							},
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		// Returns true if we're currently on the last slide
 | 
							// Returns true if we're currently on the last slide
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue