diff options
author | friendica <info@friendica.com> | 2013-09-01 19:15:08 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-01 19:15:08 -0700 |
commit | caa148c1e3736b6d51327883b04405b00a4cda0b (patch) | |
tree | 2d3d213a5011b54840a199cad430a0278f179193 /js/fk.autocomplete.js | |
parent | a1906482dc3323f747744a1447aace78b494ddbd (diff) | |
download | volse-hubzilla-caa148c1e3736b6d51327883b04405b00a4cda0b.tar.gz volse-hubzilla-caa148c1e3736b6d51327883b04405b00a4cda0b.tar.bz2 volse-hubzilla-caa148c1e3736b6d51327883b04405b00a4cda0b.zip |
Sheesh. Three lines of Javascript. All you have to do is find which of the three lines is doing something wrong. Or FILE A BUG. Or use a different browser (not *try* a different browser, *use* a different browser), or turn off freaking tinymce. But no - let's argue about browsers instead.
Diffstat (limited to 'js/fk.autocomplete.js')
-rw-r--r-- | js/fk.autocomplete.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/js/fk.autocomplete.js b/js/fk.autocomplete.js index cd0a1c044..8bac41936 100644 --- a/js/fk.autocomplete.js +++ b/js/fk.autocomplete.js @@ -32,6 +32,12 @@ function ACPopup(elm,backend_url){ } } + if(! w) + w = 530; + + if(! h) + h = 130; + style.top=style.top+h; style.width = w; style.position = 'absolute'; |