Merge pull request #619 from anaqreon/dev
Make region_1 table of contents "unsticky" when width is less than
This commit is contained in:
		
							
								
								
									
										11
									
								
								doc/toc.html
									
									
									
									
									
								
							
							
						
						
									
										11
									
								
								doc/toc.html
									
									
									
									
									
								
							| @@ -407,12 +407,21 @@ | ||||
|                 tocUl.removeClass();  // Classes are automatically added to <ul> elements by something else | ||||
|                 tocUl.toc({content: "#doco-content", headings: "h1"}); | ||||
|                 tocUl.addClass('toc-content sub-menu'); | ||||
|                 if( $(window).height() > 499) { | ||||
| 				tocUl.attr('id', 'doco-side-toc'); | ||||
|                 if( $(window).width() > 768) { | ||||
| 					tocUl.sticky({topSpacing:$('nav').outerHeight(true), zIndex: 1000}); | ||||
| 				} | ||||
|             } | ||||
|         }); | ||||
| 		 | ||||
| 		$( window ).resize(function() { | ||||
| 			if($(window).width() < 768 ) { | ||||
| 				$( "#doco-side-toc" ).unstick(); | ||||
| 			} else { | ||||
| 				$( "#doco-side-toc" ).sticky({topSpacing:$('nav').outerHeight(true), zIndex: 1000}); | ||||
| 			} | ||||
| 		}); | ||||
| 		         | ||||
|     }); | ||||
|  | ||||
| </script> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user