Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/darshanbaral/kitab.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'static/js/myFunctions.js')
-rw-r--r--static/js/myFunctions.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/static/js/myFunctions.js b/static/js/myFunctions.js
index 196301e..8b376af 100644
--- a/static/js/myFunctions.js
+++ b/static/js/myFunctions.js
@@ -1,3 +1,21 @@
+window.onclick = function(event) {
+ let insideMenu = false;
+ Array.from(document.querySelectorAll(".show")).forEach(menu => {
+ insideMenu = insideMenu || menu.contains(event.target);
+ });
+ if (!insideMenu && !event.target.matches(".hover-menu")) {
+ Array.from(document.querySelectorAll(".hover-menu")).forEach(hovermenu => {
+ hovermenu.nextElementSibling.style.maxHeight = "0px";
+ });
+ }
+};
+let expandMenu = function(x) {
+ Array.from(document.querySelectorAll(".hover-menu")).forEach(hovermenu => {
+ hovermenu.nextElementSibling.style.maxHeight = "0px";
+ });
+ let thisMenu = x.nextElementSibling;
+ thisMenu.style.maxHeight = thisMenu.scrollHeight + "px";
+};
let scrollToTop = () => {
const c = document.documentElement.scrollTop || document.body.scrollTop;
if (c > 0) {