1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 17:59:55 +02:00

Reverting for some fixes

This commit is contained in:
daniel 2018-03-14 12:57:12 -03:00
parent 6368c975fa
commit 4d98ca30a6
3 changed files with 63 additions and 242 deletions

View file

@ -56,8 +56,8 @@ $(document).ready(function () {
$(".thumbsImage").on("mouseenter", function () {
gifId = $(this).find(".thumbsGIF").attr('id');
id = gifId.replace('thumbsGIF','');
//$(this).find(".thumbsGIF").height($(this).find(".aspectRatio16_9").height());
//(this).find(".thumbsGIF").width($(this).find(".aspectRatio16_9").width());
$(this).find(".thumbsGIF").height($(this).find(".thumbsJPG").height());
$(this).find(".thumbsGIF").width($(this).find(".thumbsJPG").width());
/*
try {
@ -251,8 +251,8 @@ function closeFloatVideo() {
function mouseEffect(){
$(".thumbsImage").on("mouseenter", function () {
//$(this).find(".thumbsGIF").height($(this).find(".aspectRatio16_9").height());
//$(this).find(".thumbsGIF").width($(this).find(".aspectRatio16_9").width());
$(this).find(".thumbsGIF").height($(this).find(".thumbsJPG").height());
$(this).find(".thumbsGIF").width($(this).find(".thumbsJPG").width());
$(this).find(".thumbsGIF").stop(true, true).fadeIn();
});