Fix contact popup with tinyMCE

Fix #1920
This commit is contained in:
fabrixxm 2015-12-04 18:59:50 +01:00
parent 4e53df7c71
commit f3901b99a2
1 changed files with 30 additions and 29 deletions

View File

@ -23,19 +23,20 @@ function ACPopup(elm,backend_url){
var h = 130;
if(typeof elm.editorId == "undefined") {
if(tinyMCE.activeEditor == null) {
style = $(elm).offset();
w = $(elm).width();
h = $(elm).height();
}
else {
var container = elm.getContainer();
if(typeof container != "undefined") {
// I can't find an "official" way to get the element who get all
// this fraking thing that is tinyMCE.
// This code will broke again at some point...
var container = $(tinyMCE.activeEditor.getContainer()).find("table");
style = $(container).offset();
w = $(container).width();
h = $(container).height();
}
}
style.top=style.top+h;
style.width = w;