Changes

From Life After BOB Wiki
64 bytes removed ,  16:28, 12 June 2021
no edit summary
Line 11: Line 11:  
} );
 
} );
   −
//check image orientation
+
//hover
   −
          var orientation,
+
$('.fc-img').hover(function(){
          img = new Image();
+
  console.log("on hover");
          img.src = $('.fc-img').children('img').src;
+
  $(this).parent().css('background','white')
          console.log($('.fc-img').children('img'));
+
})
 +
 
 +