- Notifications
You must be signed in to change notification settings - Fork5.5k
"#element".tooltip is not a function on home page fixed.#6070
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
kevin-bates left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
This indeed appears to be fixed - thank you.
Since I'm not familiar with this area of the code, it would be great to get a confirmation from someone that can determine if there's any hidden issue here.
blink1073 left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Looks good, thank you!
Closes#6062
Hello, this is my first time contributing to Github.
In the notebook/templates/tree.html file was there a $ character missing which resulted in an
"#element".tooltip is not a functionerror in the console, I fixed this issue by adding the $ character. Then I also found out that this line:$('#element').tooltip('enable')that uses jquery was ran first, only then jquery was imported (<script src="{{ static_url("tree/js/main.min.js") }}" type="text/javascript" charset="utf-8"></script>), this also resulted in an error, I swapped them and now it works.I hope I did not miss anything.
Kind regards, Ilay Hamer.