aboutsummaryrefslogtreecommitdiffstats
path: root/js/fk.autocomplete.js
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-03-21 05:27:08 -0700
committerfriendica <info@friendica.com>2012-03-21 05:27:08 -0700
commit3ad02a749b1ae7db2a92a552a3ed1ffe545ed46f (patch)
treea0c107f46522b87bec4753484fdac53a7a8628b3 /js/fk.autocomplete.js
parent1a98f3c067b23d8608a9d24efa683ccd95c5de03 (diff)
downloadvolse-hubzilla-3ad02a749b1ae7db2a92a552a3ed1ffe545ed46f.tar.gz
volse-hubzilla-3ad02a749b1ae7db2a92a552a3ed1ffe545ed46f.tar.bz2
volse-hubzilla-3ad02a749b1ae7db2a92a552a3ed1ffe545ed46f.zip
make autocomplete work with updated tinymce
Diffstat (limited to 'js/fk.autocomplete.js')
-rwxr-xr-xjs/fk.autocomplete.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/js/fk.autocomplete.js b/js/fk.autocomplete.js
index 69fe77e8c..b1db92c41 100755
--- a/js/fk.autocomplete.js
+++ b/js/fk.autocomplete.js
@@ -14,22 +14,22 @@ function ACPopup(elm,backend_url){
this.kp_timer = false;
this.url = backend_url;
+ var w = 530;
+ var h = 130;
+
+
if(typeof elm.editorId == "undefined") {
style = $(elm).offset();
w = $(elm).width();
h = $(elm).height();
}
else {
- style = $(elm.container).offset();
- w = elm.container.offsetWidth;
- h = elm.container.offsetHeight;
- // Quick fix for chrome until I get a tool to inspect the dom
- // Chrome returns 0x0
- if(! w)
- w = 530;
- if(! h)
- h = 130;
-
+ var container = elm.getContainer();
+ if(typeof container != "undefined") {
+ style = $(container).offset();
+ w = $(container).width();
+ h = $(container).height();
+ }
}
style.top=style.top+h;