2016-10-10 15:24:25 +02:00

88 lines
2.3 KiB
JavaScript
Executable File

$(document).ready(function(){
$(document).on('touchstart click', '.delivery_options_address .ui-radio', function(e){
if($(this).children('.delivery_option_radio').val() == "61,"){
PS_MRObject.initFront();
}
});
});
// Allows to set the same height on ui-block element
// for #category-list items.
$( '.prestashop-page' ).live( 'pageshow',function(event)
{
if ($('.ui-grid-a.same-height').length)
{
$('.ui-grid-a.same-height .ui-block-a').each(function()
{
if ($(this).height() != $(this).next('.ui-block-b').height())
{
var height1 = $(this).height();
var height2 = $(this).next('.ui-block-b').height();
if (height1 < height2) {
$(this).height(height2).find('.ui-btn-inner.ui-li').height(height2);
if ($(this).find('.ui-bar').length) {
var less_h = [
parseInt($(this).find('.ui-bar').css('padding-top')),
parseInt($(this).find('.ui-bar').css('padding-bottom')),
parseInt($(this).find('.ui-bar').css('border-top-width')),
parseInt($(this).find('.ui-bar').css('border-bottom-width'))
];
$(this).find('.ui-bar').height(height2-less_h[0]-less_h[1]-less_h[2]-less_h[3]);
}
} else {
$(this).next('.ui-block-b').height(height1).find('.ui-btn-inner.ui-li').height(height1);
}
}
});
}
});
$( '.prestashop-page' ).live( 'pageinit',function(event)
{
if ($('.wrapper_pagination_mobile').length)
{
$('.wrapper_pagination_mobile').find('.disabled').live('click', function(e)
{
e.preventDefault();
return false;
});
}
});
// $(document).ready(function(){
// $('.thickbox').fancybox({
// 'hideOnContentClick': true,
// 'transitionIn' : 'elastic',
// 'transitionOut' : 'elastic'
// });
// $('.thickbox2').fancybox({
// 'hideOnContentClick': false,
// 'transitionIn' : 'elastic',
// 'transitionOut' : 'elastic'
// });
// });
function flexSlide() {
$('.flexslider').flexslider({
animation: "slide",
after: function(){
var ind = $('.flex-active-slide').index();
$('#views_block a').removeClass('shown');
$('#views_block a:eq('+(ind-1)+')').addClass('shown');
account++;
// console.log(account);
if(account == len){
setTimeout(function(){ $('.flex-control-nav li:eq(0) a').trigger('click'); }, 3000);
}
}
});
}
$(document).on('pageinit', function() {
flexSlide();
});