mirror of
https://github.com/openvk/openvk
synced 2024-12-23 00:51:03 +03:00
Wall: Fix clipboard pasting in textarea
This commit is contained in:
parent
c3f44c58ad
commit
a01bab1179
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ u("#wall-post-input").on("paste", function(e) {
|
||||||
var input = u("input[name=_pic_attachment]").nodes[0];
|
var input = u("input[name=_pic_attachment]").nodes[0];
|
||||||
input.files = e.clipboardData.files;
|
input.files = e.clipboardData.files;
|
||||||
|
|
||||||
u(fileSelect).trigger("change");
|
u(input).trigger("change");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue