Browse Source

Fix lazy-expand menu click problem

pull/21938/head
liangshiwei 1 year ago
parent
commit
11233e58ab
  1. 2
      modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/index.js

2
modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/index.js

@ -376,7 +376,7 @@ var doc = doc || {};
var initLazyExpandNavigation = function(){
$("li .lazy-expand").off('click');
$("li .lazy-expand a").on('click', function(e){
$("li .lazy-expand").children("a").on('click', function(e){
if($(this).attr("href") !== "javascript:;"){
e.stopPropagation();
}

Loading…
Cancel
Save