Fix js error in homepage (#7680)
When document.querySelector('#docsToc') is null ,get TypeError Cannot read property 'querySelector' of null 。
This commit is contained in:
committed by
k8s-ci-robot
parent
1549d29783
commit
f5558e0e57
@@ -32,6 +32,7 @@ ga('send', 'pageview');
|
||||
|
||||
function hideNav(toc){
|
||||
if (!toc) toc = document.querySelector('#docsToc')
|
||||
if (!toc) return
|
||||
var container = toc.querySelector('.container')
|
||||
|
||||
// container is built dynamically, so it may not be present on the first runloop
|
||||
|
||||
Reference in New Issue
Block a user