1
0
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:
chylex 2017-08-12 03:37:24 +02:00
parent c9d551213a
commit fe88ea5c05

View File

@ -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);