diff options
author | marijus <mario@localhost.localdomain> | 2013-11-14 18:03:16 +0100 |
---|---|---|
committer | marijus <mario@localhost.localdomain> | 2013-11-14 18:03:16 +0100 |
commit | 3311fe481352e30206c5d9c593f158814be9ca0b (patch) | |
tree | b19cb9b3cd42bd0bfb521e95e2c4cb96f7519acb /view/js/mod_poke.js | |
parent | ee629534d5245443152797bae81768680b5dda85 (diff) | |
download | volse-hubzilla-3311fe481352e30206c5d9c593f158814be9ca0b.tar.gz volse-hubzilla-3311fe481352e30206c5d9c593f158814be9ca0b.tar.bz2 volse-hubzilla-3311fe481352e30206c5d9c593f158814be9ca0b.zip |
make autocomplete better themable by adding an id
Diffstat (limited to 'view/js/mod_poke.js')
-rw-r--r-- | view/js/mod_poke.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/view/js/mod_poke.js b/view/js/mod_poke.js index fa00ac2d5..edd53bb6a 100644 --- a/view/js/mod_poke.js +++ b/view/js/mod_poke.js @@ -3,7 +3,8 @@ $(document).ready(function() { a = $("#poke-recip").autocomplete({ serviceUrl: baseurl + '/acl', minChars: 2, - width: 350, + width: 250, + id: 'poke-recip-ac'; onSelect: function(value,data) { $("#poke-recip-complete").val(data); } |