mirror of
https://github.com/sorenpeter/timeline.git
synced 2025-12-16 19:37:01 +00:00
Fixed CSS for refresh
This commit is contained in:
parent
bd6a4b262d
commit
313a8c9a4c
1 changed files with 3 additions and 3 deletions
|
|
@ -18,7 +18,7 @@ include 'partials/header.php';
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<p id="refreshLabel">
|
<p id="refreshLabel">
|
||||||
<span id="refreshInfo">Loading feeds followed by:</span>
|
<strong id="refreshInfo">Loading feeds followed by:</strong>
|
||||||
<span id="refreshURL"><?= preg_replace('(^https?://)', '', $url) ?></span>
|
<span id="refreshURL"><?= preg_replace('(^https?://)', '', $url) ?></span>
|
||||||
<span id="refreshCounter"></span>
|
<span id="refreshCounter"></span>
|
||||||
</p>
|
</p>
|
||||||
|
|
@ -88,8 +88,8 @@ foreach ($twtFollowingList as $following) {
|
||||||
|
|
||||||
// Tell user that the process is completed
|
// Tell user that the process is completed
|
||||||
echo '<script language="javascript">
|
echo '<script language="javascript">
|
||||||
document.getElementById("refreshInfo").innerHTML="Refreshed '.$total.' feeds";
|
document.getElementById("refreshInfo").innerHTML="Refreshed '.$total.' feeds from:";
|
||||||
document.getElementById("refreshURL").innerHTML = "";
|
document.getElementById("refreshURL").innerHTML = "'.preg_replace('(^https?://)', '', $url).'";
|
||||||
document.getElementById("refreshCounter").innerHTML = "";
|
document.getElementById("refreshCounter").innerHTML = "";
|
||||||
history.back();
|
history.back();
|
||||||
</script>';
|
</script>';
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue