diff options
author | zottel <github@zottel.net> | 2012-03-17 02:25:22 +0100 |
---|---|---|
committer | zottel <github@zottel.net> | 2012-03-17 02:25:22 +0100 |
commit | 3bbd82abb3b33f041ec35b85de5bddcd79ed5471 (patch) | |
tree | 8cb7d68340d40e78e8a8ea2a1618250749a6edb9 /mod/display.php | |
parent | c56e3c5dd4bcbb949282fd3b4c065ccfd4673726 (diff) | |
parent | 4a6f114ec008002f439214aac1d006d8db4051ac (diff) | |
download | volse-hubzilla-3bbd82abb3b33f041ec35b85de5bddcd79ed5471.tar.gz volse-hubzilla-3bbd82abb3b33f041ec35b85de5bddcd79ed5471.tar.bz2 volse-hubzilla-3bbd82abb3b33f041ec35b85de5bddcd79ed5471.zip |
Merge remote branch 'upstream/master'
Diffstat (limited to 'mod/display.php')
-rwxr-xr-x | mod/display.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/mod/display.php b/mod/display.php index f428149e8..81ed174ac 100755 --- a/mod/display.php +++ b/mod/display.php @@ -16,7 +16,15 @@ function display_content(&$a) { $o = '<div id="live-display"></div>' . "\r\n"; - $a->page['htmlhead'] .= '<script>$(document).ready(function() { $(".comment-edit-wrapper textarea").contact_autocomplete(baseurl+"/acl"); });</script>'; + $a->page['htmlhead'] .= <<<EOT +<script> +$(document).ready(function() { + $(".comment-edit-wrapper textarea").contact_autocomplete(baseurl+"/acl"); + // make auto-complete work in more places + $(".wall-item-comment-wrapper textarea").contact_autocomplete(baseurl+"/acl"); +}); +</script> +EOT; $nick = (($a->argc > 1) ? $a->argv[1] : ''); |