Skip to content
Snippets Groups Projects
Unverified Commit 9d8336b0 authored by Amrita Deb Dutta's avatar Amrita Deb Dutta Committed by GitHub
Browse files

iss123 pdf not loaded jqueryfix

parent 4d7867bc
Branches
No related tags found
No related merge requests found
......@@ -68,18 +68,18 @@ function addDropdownNavigation(Y, __capabilities, __cmid) {
overviewtab.addEventListener("mouseleave", function () {
setTimeout(function () {
if (!mouseOverDropdownContent) {
$('#pdfannotator_dropdownnav').removeClass('show');
document.getElementById('pdfannotator_dropdownnav').classList.remove('show');
}
}, 0);
});
$('#pdfannotator_dropdownnav').mouseenter(function () {
document.getElementById('pdfannotator_dropdownnav').onmouseenter = function(){
mouseOverDropdownContent = true;
});
$('#pdfannotator_dropdownnav').mouseleave(function () {
$('#pdfannotator_dropdownnav').removeClass('show');
};
document.getElementById('pdfannotator_dropdownnav').onmouseleave = function(){
document.getElementById('pdfannotator_dropdownnav').classList.remove('show');
mouseOverDropdownContent = false;
});
};
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment