Compare commits

..

1 commit

Author SHA1 Message Date
mrilyew
bbf00d6bd9
Merge 9a81e354ea into 2aedc3e861 2024-12-04 21:14:27 +03:00
3 changed files with 4 additions and 17 deletions

View file

@ -553,7 +553,7 @@
}
.audioEntry .buttons .report-icon {
background-position: -51px -67px;
background-position: -50px -67px;
}
.audioEntry .buttons .remove-icon {

View file

@ -409,10 +409,6 @@ window.player = new class {
return u('.bigPlayer').length > 0
}
isAtCurrentContextPage() {
return this.isAtAudiosPage() && this.context.object.url == location.pathname + location.search
}
dump() {
const final = {
context: this.context,
@ -438,9 +434,7 @@ window.player = new class {
}
if(dump_object.time) {
setTimeout(() => {
this.audioPlayer.currentTime = dump_object.time
}, 1000)
this.audioPlayer.currentTime = dump_object.time
}
}
@ -763,9 +757,6 @@ document.addEventListener("DOMContentLoaded", async () => {
try {
parsed = JSON.parse(localStorage.getItem('audio.lastDump'))
} catch(e) {}
if(window.openvk.current_id == 0) {
return
}
if(parsed) {
await window.player.init(null)
@ -780,10 +771,6 @@ document.addEventListener("DOMContentLoaded", async () => {
}
})
window.addEventListener('beforeunload', (e) => {
window.player.dump()
})
u(document).on('click', '.audioEntry .playerButton > .playIcon', async (e) => {
const audioPlayer = u(e.target).closest('.audioEmbed')
const id = Number(audioPlayer.attr('data-realid'))
@ -1989,7 +1976,6 @@ u(document).on('click', '.upload_container_element #small_remove_button', (e) =>
return
}
// 1984
const element = u(e.target).closest('.upload_container_element')
const element_index = Number(element.attr('data-index'))
@ -2058,6 +2044,7 @@ u(document).on("drop", "#upload_container", function (e) {
})
u(document).on('click', '#_playlistAppendTracks', (e) => {
// 1984
showAudioAttachment('playlist', u('.PE_wrapper').nodes[0])
})

View file

@ -2360,7 +2360,7 @@ async function __processPaginatorNextPage(page)
container.nodes[0].append(u(`.paginator:not(.paginator-at-top)`).nodes[0].parentNode)
}
if(window.player && window.player.isAtAudiosPage() && window.player.isAtCurrentContextPage()) {
if(window.player) {
window.player.loadContext(page)
}