this plugin works pretty nice as it should so thanks for putting it back for vb4 !
btw: i found only a minor bug on smilies >>
the more button brings indeed the smilies up but clicking on them doesnt work...
in ohter words they wont be added in shout room...
hope this can be fixed
meanwhile i found a fix on half of this long postings so its not bad to repost it <<<<
Quote:
Originally Posted by VBDev
Smilies don't get added to the chatbox when in the "more" windows [See here for a fix]
The link to the fix provides no fix. Could you check? Thanks.
I've fixed it by adding missing javascript to the mgc_cb_evo_smilies_vb4 template.
Code:
Code:
<script type="text/javascript">
function insert_smilie_from_window(smilietext)
{
childwindow = window;
window.opener.add_smiley_to_input(smilietext);
childwindow.focus();
}
</script>
|