Hi All,Current version used: 1.3004
There seems to be a bug with the HTML editor in the back end in most browsers bar IE. The context menu on right-click appears below the editor window:
I have had to make a temporary workaround by handling the click of the ui buttons and changing the z-index myself:
$(document).ready(function () {
$('.icon_edit').bind("click", function () {
setTimeout(function () {
$('.icon_html').hide();
setTimeout(function () {
$('.icon_html').bind("click", function () {
setTimeout(function () {
$('.popup.htmleditor').css("z-index", "70001");
}, 1000);
});
$('.icon_html').show();
}, 3000);
}, 1000);
});
});
Are there any plans to fix this?