Subversion Repositories wpShopGermany4

Rev

Rev 7136 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7136 Rev 7472
Line 62... Line 62...
62
		} ); 
62
		} ); 
63
		
63
		
64
		return false;
64
		return false;
65
	
65
	
66
	}
66
	}
-
 
67
	
-
 
68
	
-
 
69
	/* Minigallery  */
-
 
70
	function wpsg_product_bind()
-
 
71
	{
-
 
72
        
-
 
73
		// Prev im Produktcarousel
-
 
74
		jQuery('.wpsg_productteaser .wpsg_productteaser_left').unbind('click').bind('click', function() { 
-
 
75
        
-
 
76
            if (typeof jQuery(this).attr("data-target") != "undefined") jQuery('#wpsg_slider_pt_' + jQuery(this).attr("data-target")).carousel("prev"); 
-
 
77
            else jQuery(this).parents('.wpsg_productteaser').find('.carousel:visible').carousel("prev");
-
 
78
            
-
 
79
            return false;
-
 
80
        
-
 
81
        } );
-
 
82
 
-
 
83
        // Next im Productcarousel
-
 
84
		jQuery('.wpsg_productteaser .wpsg_productteaser_right').unbind('click').bind('click', function() { 
-
 
85
            
-
 
86
            if (typeof jQuery(this).attr("data-target") != "undefined") jQuery('#wpsg_slider_pt_' + jQuery(this).attr("data-target")).carousel("next");
-
 
87
            else jQuery(this).parents('.wpsg_productteaser').find('.carousel:visible').carousel("next");
-
 
88
            
-
 
89
            return false; 
-
 
90
        
-
 
91
        } );
-
 
92
 
-
 
93
		// + / - im Produkttemplate
-
 
94
		jQuery('.wpsg_product_sub, .wpsg_product_add').unbind('click').bind('click', function() {
-
 
95
 
-
 
96
			var amount = parseInt(jQuery(this).parents('.product_add').find('.wpsg_amount').val());
-
 
97
			if (amount == NaN || amount < 0) amount = 0;
-
 
98
 
-
 
99
			if (jQuery(this).hasClass('wpsg_product_add')) amount ++;
-
 
100
			else if (amount > 1) amount --;
-
 
101
 
-
 
102
			jQuery(this).parents('.product_add').find('.wpsg_amount').val(amount);
-
 
103
 
-
 
104
			return false;
-
 
105
 
-
 
106
		} );
-
 
107
        
-
 
108
    }
67
 
109
 
68
	/**
110
	/**
69
	 * Sperrt die Funktionen im Produkttemplate, während einer Ajax Aktion
111
	 * Sperrt die Funktionen im Produkttemplate, während einer Ajax Aktion
70
	 * @param template_index
112
	 * @param template_index
71
     */
113
     */