In the bokeh example http://docs.bokeh.org/en/latest/docs/user_guide/interaction/callbacks.html#customjs-for-hover
the dictonary "links" is passed to the JS by adding it at the end of the code block with:
....
""" % links
Is it possible to pass over two variables and what would the syntax look like? I tried different versions like
""" % links,myvar
""" % ('links','myvar')
""" % links, % myvar
but they all create errors or do not work. I also found this Bokeh: pass vars to CustomJS for Widgets but perhaps there is an update? Thx