mirror of
https://github.com/openvk/openvk
synced 2024-12-22 08:31:18 +03:00
fix(ajax): maybe last fixes
This commit is contained in:
parent
9d75f0b249
commit
48ccd7ef43
8 changed files with 24 additions and 12 deletions
|
@ -99,7 +99,7 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="audiosPaddingContainer audiosSideContainer audiosPaddingContainer" n:if="$mode == 'playlists'">
|
||||
<div class="audiosPaddingContainer audiosSideContainer audiosPaddingContainer" style="width: 72.2%;" n:if="$mode == 'playlists'">
|
||||
<div n:if="$playlistsCount <= 0" style='height: 100%;'>
|
||||
{include "../components/content_error.xml", description => $ownerId > 0 ? ($ownerId == $thisUser->getId() ? tr("no_playlists_thisuser") : tr("no_playlists_user")) : tr("no_playlists_club")}
|
||||
</div>
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
</script>
|
||||
|
||||
<div class="playlistBlock">
|
||||
<div class="playlistCover" style="float: left;">
|
||||
<div class="playlistCover">
|
||||
{if $cover}
|
||||
<a href="{$cover_url}" target="_blank">
|
||||
<img onclick="OpenMiniature(event, {$cover_url}, null, {$cover->getPrettyId()}, null)" src="{$cover_url}" alt="{_playlist_cover}">
|
||||
|
@ -62,7 +62,7 @@
|
|||
|
||||
<div class='playlistWrapper'>
|
||||
<div class="playlistInfo">
|
||||
<h4 style="border-bottom:unset;">{$playlist->getName()}</h4>
|
||||
<h4>{$playlist->getName()}</h4>
|
||||
|
||||
<div class="moreInfo">
|
||||
{$playlist->getMetaDescription()|noescape}
|
||||
|
@ -70,7 +70,7 @@
|
|||
<div style="margin-top: 11px;">
|
||||
<span>{nl2br($playlist->getDescriptionHTML())|noescape}</span>
|
||||
</div>
|
||||
<hr style="color: #f7f7f7;">
|
||||
<hr>
|
||||
</div>
|
||||
</div>
|
||||
<div class="audiosContainer scroll_container infContainer" style="margin-top: 14px;">
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
<div class="crp-list scroll_container">
|
||||
<div n:foreach="$corresps as $coresp"
|
||||
class="scroll_node crp-entry"
|
||||
onmousedown="window.location.href = {$coresp->getURL()};" >
|
||||
onmousedown="window.location.assign({$coresp->getURL()});" >
|
||||
{var $recipient = $coresp->getCorrespondents()[1]}
|
||||
{var $lastMsg = $coresp->getPreviewMessage()}
|
||||
|
||||
|
|
|
@ -174,7 +174,7 @@
|
|||
<input type="submit" class="profile_link" value="{_friends_reject}" />
|
||||
</form>
|
||||
{elseif $subStatus === 3}
|
||||
<a href="/im?sel={$x->getId()}" class="profile_link">{_send_message}</a>
|
||||
<a href="/im?sel={$x->getId()}" class="profile_link" rel="nofollow">{_send_message}</a>
|
||||
<form action="/setSub/user" method="post" class="profile_link_form" id="_submitUserSubscriptionAction">
|
||||
<input type="hidden" name="act" value="rem" />
|
||||
<input type="hidden" name="id" value="{$x->getId()}" />
|
||||
|
|
|
@ -593,13 +593,25 @@
|
|||
}
|
||||
|
||||
.playlistBlock {
|
||||
display: flex;
|
||||
gap: 13px;
|
||||
margin-top: 14px;
|
||||
}
|
||||
|
||||
.playlistBlock .playlistCover {
|
||||
max-width: 135px;
|
||||
}
|
||||
|
||||
.playlistBlock .playlistWrapper {
|
||||
float: left;
|
||||
padding-left: 13px;
|
||||
width:75%
|
||||
width: 75%
|
||||
}
|
||||
|
||||
.playlistBlock .playlistInfo h4 {
|
||||
border-bottom: unset;
|
||||
}
|
||||
|
||||
.playlistBlock .playlistInfo hr {
|
||||
color: #f7f7f7;
|
||||
}
|
||||
|
||||
.playlistCover .profile_links .profile_link {
|
||||
|
|
|
@ -2617,7 +2617,7 @@ a.poll-retract-vote {
|
|||
gap: 2px;
|
||||
}
|
||||
|
||||
.vertical-attachment .vertical-attachment-content {
|
||||
.post-buttons .vertical-attachment .vertical-attachment-content {
|
||||
max-height: 27px;
|
||||
}
|
||||
|
||||
|
|
|
@ -2018,7 +2018,7 @@ async function repost(id, repost_type = 'post') {
|
|||
}
|
||||
}
|
||||
|
||||
NewNotification(tr('information_-1'), tr('shared_succ'), null, () => {window.location.assign(`/wall${res.pretty_id}`)});
|
||||
NewNotification(tr('information_-1'), tr('shared_succ'), null, () => {window.router.route(`/wall${res.pretty_id}`)});
|
||||
} catch(e) {
|
||||
console.error(e)
|
||||
fastError(e.message)
|
||||
|
|
|
@ -240,7 +240,7 @@ u(document).on('click', 'a', async (e) => {
|
|||
let url = target.nodes[0].href
|
||||
|
||||
if(id) {
|
||||
if(['act_tab_a', 'ki', 'used', '_pinGroup', 'profile_link'].indexOf(id) == -1) {
|
||||
if(['act_tab_a', 'ki', 'used', '_pinGroup', 'profile_link', 'minilink-friends', 'minilink-albums', 'minilink-messenger', 'minilink-groups', 'minilink-notifications'].indexOf(id) == -1) {
|
||||
console.log('AJAX | Skipping cuz maybe its function call link.')
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue