mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 02:46:30 +00:00
Empty commit
This commit is contained in:
parent
2838f1526d
commit
051ed8520e
@ -13,7 +13,7 @@
|
||||
|
||||
|
||||
|
||||
View::show_header('Friends');
|
||||
View::show_header('Friends','comments');
|
||||
|
||||
|
||||
$UserID = $LoggedUser['ID'];
|
||||
|
@ -10,7 +10,7 @@
|
||||
}
|
||||
list($Page, $Limit) = Format::page_limit($PerPage);
|
||||
|
||||
View::show_header('Subscriptions','subscriptions,bbcode');
|
||||
View::show_header('Subscriptions','subscriptions,comments,bbcode');
|
||||
|
||||
$ShowUnread = (!isset($_GET['showunread']) && !isset($HeavyInfo['SubscriptionsUnread']) || isset($HeavyInfo['SubscriptionsUnread']) && !!$HeavyInfo['SubscriptionsUnread'] || isset($_GET['showunread']) && !!$_GET['showunread']);
|
||||
$ShowCollapsed = (!isset($_GET['collapse']) && !isset($HeavyInfo['SubscriptionsCollapse']) || isset($HeavyInfo['SubscriptionsCollapse']) && !!$HeavyInfo['SubscriptionsCollapse'] || isset($_GET['collapse']) && !!$_GET['collapse']);
|
||||
@ -230,7 +230,7 @@
|
||||
<tr class="row<?=$ShowCollapsed ? ' hidden' : '' ?>">
|
||||
<? if (Users::has_avatars_enabled()) { ?>
|
||||
<td class="avatar" valign="top">
|
||||
<?=Users::show_avatar($Result['LastReadAvatar'], $Result['LastReadUsername'], $HeavyInfo['DisableAvatars'])?>
|
||||
<?=Users::show_avatar($Result['LastReadAvatar'], $Result['LastReadUserID'], $Result['LastReadUsername'], $HeavyInfo['DisableAvatars'])?>
|
||||
</td>
|
||||
<? } ?>
|
||||
<td class="body" valign="top">
|
||||
|
@ -395,22 +395,36 @@ $(document).ready(function() {
|
||||
var avatars = new Array();
|
||||
$(".double_avatar").each(function() {
|
||||
if ($(this).data("gazelle-second-avatar")) {
|
||||
$(this).data("fading", "");
|
||||
var secondAvatar = $(this).data("gazelle-second-avatar");
|
||||
var originalAvatar = $(this).attr("src");
|
||||
if ($.inArray(secondAvatar, avatars) == -1) {
|
||||
// Preload second image
|
||||
avatars.push(secondAvatar);
|
||||
image = new Image();
|
||||
var image = new Image();
|
||||
image.src = secondAvatar;
|
||||
}
|
||||
$(this).mouseover(function() {
|
||||
$(this).fadeOut(fadeSpeed, function() {
|
||||
if ($(this).data("fading") == "") {
|
||||
var originalHeight = $(this).parent().height();
|
||||
$(this).data("fading", "in");
|
||||
$(this).fadeTo(fadeSpeed, 0, function() {
|
||||
$(this).attr("src", secondAvatar);
|
||||
}).fadeIn(fadeSpeed);
|
||||
if (!this.parentNode.style.height) {
|
||||
$(this).parent().css("height", Math.max($(this).parent().height(), originalHeight) + 'px');
|
||||
}
|
||||
}).fadeTo(fadeSpeed, 1);
|
||||
}
|
||||
});
|
||||
$(this).mouseout(function() {
|
||||
if ($(this).data("fading") != "out" && ($(this).data("fading") != "" || $(this).attr("src") != originalAvatar)) {
|
||||
$(this).data("fading", "out");
|
||||
$(this).fadeOut(fadeSpeed, function() {
|
||||
$(this).attr("src", originalAvatar);
|
||||
}).fadeIn(fadeSpeed);
|
||||
}).fadeIn(fadeSpeed, function() {
|
||||
$(this).data("fading", "");
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user