Skip to content
Snippets Groups Projects
Commit a13b79cb authored by Bas Nijholt's avatar Bas Nijholt
Browse files

load jQuery before jQueryUI to correctly display the ipywidgets

parent b5cccb04
No related branches found
No related tags found
No related merge requests found
Pipeline #12921 passed
......@@ -136,7 +136,7 @@ def get_holoviews_js_css():
from holoviews.plotting import Renderer
dependencies = {**Renderer.core_dependencies,
**Renderer.extra_dependencies}
required = ['jQueryUI', 'jQuery', 'require']
required = ['jQuery', 'jQueryUI', 'require']
js = [url for name in required for url in dependencies[name].get('js', [])]
css = [url for name in required for url in dependencies[name].get('css', [])]
return js, css
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment