mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-04-14 12:15:48 +02:00
Fix ctrl key not opening gifs externally
This commit is contained in:
parent
c9d551213a
commit
fe88ea5c05
@ -800,7 +800,7 @@
|
||||
};
|
||||
|
||||
app.delegate(".js-gif-play", "click", function(e){
|
||||
let src = $(this).closest(".js-media-gif-container").find("video").attr("src");
|
||||
let src = !e.ctrlKey && $(this).closest(".js-media-gif-container").find("video").attr("src");
|
||||
|
||||
if (src){
|
||||
playVideo(src);
|
||||
|
Loading…
Reference in New Issue
Block a user