Hi Mixy,
I also experienced it not working on your forum and it seems to be Google translate that causes it, if you turn off translation it fixes it. You can fix this little bug by changing the event handler to something like this (simply adding [data-preview-post] * to the selector):
This should fix it for translation purposes.
I also experienced it not working on your forum and it seems to be Google translate that causes it, if you turn off translation it fixes it. You can fix this little bug by changing the event handler to something like this (simply adding [data-preview-post] * to the selector):
$(document).ready(function () {
$("[data-preview-post], [data-preview-post] *").hover((e) => {
post_preview.preview(e);
}, () => {
post_preview.remove_previews();
})
});
This should fix it for translation purposes.