Browse Source
Merge pull request #18870 from abpframework/issue-3673
Fix: tooltip seems broken
pull/18891/head
oykuermann
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
modules/docs/src/Volo.Docs.Web/Pages/Documents/Project/index.js
|
|
|
@ -283,7 +283,7 @@ |
|
|
|
initDocumentNodeBreadcrumb(); |
|
|
|
|
|
|
|
Element.prototype.querySelector = function (selector) { |
|
|
|
var result = $(decodeURI(selector)); |
|
|
|
var result = $(this).find(decodeURI(selector)); |
|
|
|
if(result.length > 0){ |
|
|
|
return result[0]; |
|
|
|
} |
|
|
|
|