mirror of
https://github.com/friendica/friendica
synced 2025-04-24 01:50:17 +00:00
Bugfix: There were speed problems with inifinite scroll on firefox
This commit is contained in:
parent
eaefcf9de7
commit
0b31aa963d
2 changed files with 13 additions and 9 deletions
|
@ -267,9 +267,11 @@ function bb_ShareAttributes($match) {
|
|||
preg_match('/posted="(.*?)"/ism', $attributes, $matches);
|
||||
if ($matches[1] != "")
|
||||
$posted = $matches[1];
|
||||
$reldate = (($posted) ? " " . relative_date($posted) : '');
|
||||
|
||||
$headline = '<br /><div class="shared_header">';
|
||||
$reldate = (($posted) ? " " . relative_date($posted) : '');
|
||||
|
||||
$headline = '<div class="shared_header">';
|
||||
//$headline = '<br /><div class="shared_header">';
|
||||
|
||||
if ($avatar != "")
|
||||
$headline .= '<img src="'.$avatar.'" height="32" width="32" >';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue