mirror of
https://github.com/openvk/openvk
synced 2024-12-22 16:42:32 +03:00
Fix al_wall.js
This commit is contained in:
parent
0f0d3ee950
commit
9e7467ed97
1 changed files with 3 additions and 3 deletions
|
@ -77,7 +77,6 @@ function initGraffiti(id) {
|
|||
});
|
||||
}
|
||||
|
||||
$(document).on("click", ".post-like-button", function(e) {
|
||||
function fastUploadImage(textareaId, file) {
|
||||
// uploading images
|
||||
|
||||
|
@ -151,7 +150,7 @@ function appendImage(response, textareaId) {
|
|||
u(`#post-buttons${textareaId} .upload #loader`).remove()
|
||||
}
|
||||
|
||||
u(".post-like-button").on("click", function(e) {
|
||||
$(document).on("click", ".post-like-button", function(e) {
|
||||
e.preventDefault();
|
||||
|
||||
var thisBtn = u(this).first();
|
||||
|
@ -907,6 +906,7 @@ $(document).on("click", "#shareVideo", async (e) => {
|
|||
console.error(rejection)
|
||||
document.getElementById("group").setAttribute("disabled", "disabled")
|
||||
}
|
||||
})
|
||||
|
||||
$(document).on("click", "#videoAttachment", async (e) => {
|
||||
e.preventDefault()
|
||||
|
|
Loading…
Reference in a new issue