Very good mod, thanks.
I issue though: crosslinks popup display well in forum posts, but in cms article it doesn't display on mouseover.
I checked the source file and noticed that the vbglossar_headinclude template didn't seem to be called in the cms (call for overlib_vbglossar.js).
The solution I found to make it work properly was to manually add it in vbcms_page template:
Code:
{vb:cssfile glossary.css}
<script type="text/javascript" src="clientscript/overlib_vbglossar.js"></script>
<!-- overLIB (c) Erik Bosrup -->
<script type="text/javascript">
<!--
ol_timeout={vb:raw ol_timeout};
ol_width={vb:raw ol_width};
ol_fgcolor="{vb:raw ol_fgcolor}";
ol_textcolor="{vb:raw ol_textcolor}";
ol_vbglossar_delay={vb:raw ol_vbglossar_delay};
//-->
</script>
There must be a better solution to automatically add this..