2022-11-14 17:31:15 +00:00
|
|
|
// JavaScript Document
|
|
|
|
|
|
|
|
$(function(){
|
|
|
|
$('.item').click(function(){
|
|
|
|
if($(this).hasClass('hasVideo') && isMobile==true){
|
|
|
|
var href= $(this).siblings().find('a').attr('href');
|
|
|
|
window.open(href);
|
|
|
|
}else if($(this).hasClass('hasVideo') && isMobile==false){
|
|
|
|
$(this).siblings().find('a').eq(0).click();
|
|
|
|
}else if($(this).hasClass('hasAlbum')){
|
|
|
|
$(this).siblings().find('a').eq(0).click();
|
|
|
|
}
|
|
|
|
});
|
2022-11-14 15:49:28 +00:00
|
|
|
});
|