vulkan3
GayveR
/tracker/addons/js/ppkBB3cker.js удалитьvulkan3 писал(а):Хочу убрать вот этот мод увеличения картинок так как он мешает вывода на портале новинок
Код: Выделить всё
$("a.fancybox").fancybox({
'modal': false,
'titleShow': true,
'titlePosition': 'inside',
'autoScale': true,
'autoDimensions': true,
'scrolling': 'auto',
'hideOnContentClick': true,
'titleFormat': function(title, currentArray, currentIndex, currentOpts)
{
return '<div style="width:100%;white-space:pre-wrap;background-color:#FFFFFF;overflow:auto"><a href="' + htmlspecialchars($(this).attr('href')) + '" target="_blank">' + htmlspecialchars($(this).attr('href')) + '</a></div>';
}
});
Код: Выделить всё
//Original
//$img.bind('click', function(){ imgFit(this, maxW); });
//Default
//$img.bind('click', function(){ return !window.open(src); });
//Fancybox
$img.bind('click', function(){
$(".postImg").fancybox({
'modal': false,
'titleShow': true,
'titlePosition': 'inside',
'autoScale': true,
'autoDimensions': true,
'type': 'image',
'href': src,
'scrolling': 'auto',
'hideOnContentClick': true,
'titleFormat': function(title, currentArray, currentIndex, currentOpts)
{
return '<div style="width:100%;white-space:pre-wrap;background-color:#FFFFFF;overflow:auto"><a href="' + htmlspecialchars(src) + '" target="_blank">' + htmlspecialchars(src) + '</a></div>';
}
});
});
Код: Выделить всё
//Original
//$img.bind('click', function(){ imgFit(this, maxW); });
//Default
$img.bind('click', function(){ return !window.open(src); });
//Fancybox
/*$img.bind('click', function(){
$(".postImg").fancybox({
'modal': false,
'titleShow': true,
'titlePosition': 'inside',
'autoScale': true,
'autoDimensions': true,
'type': 'image',
'href': src,
'scrolling': 'auto',
'hideOnContentClick': true,
'titleFormat': function(title, currentArray, currentIndex, currentOpts)
{
return '<div style="width:100%;white-space:pre-wrap;background-color:#FFFFFF;overflow:auto"><a href="' + htmlspecialchars(src) + '" target="_blank">' + htmlspecialchars(src) + '</a></div>';
}
});
});*/
PPK
vulkan3
maksvel1999
PPK
maksvel1999
PPK
maksvel1999
vulkan3