-
-
Notifications
You must be signed in to change notification settings - Fork 540
Refactored some cdn urls #7826
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Refactored some cdn urls #7826
Conversation
Hi @philippjfr, any thoughts on this? |
Will have to test and review in detail but have you run |
Well, I must admit I'm seriously out of my game here. It's been months since I used Panel, so a lot of things are less trivial to me right now. I don't have When running When I try out: import panel as pn
pn.config.npm_cdn = "https://unpkg.com"
pn.extension('katex')
latex = pn.pane.LaTeX('${a}^{{{b}}} = {d}$')
latex.servable() using:
I do see:
in my network tab, so I'm guessing it didn't work? Am I at least trying the right things here? |
Yep, that all sounds correct. |
@@ -34,6 +35,10 @@ class VizzuChart(LayoutDOM): | |||
f"{config.npm_cdn}/vizzu@{VIZZU_VERSION}/dist/vizzu.min.js" | |||
] | |||
|
|||
@classproperty | |||
def __javascript__(cls): |
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.
Don't think this is correct. Let's skip Vizzu for now. We'll likely move it into an extension anyway.
Related to #6161