Subversion Repositories wpShopGermany4

Rev

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

Rev 7886 Rev 7902
Line 5... Line 5...
5
	 */
5
	 */
6
 
6
 
7
?>
7
?>
8
 
8
 
9
<style type="text/css">
9
<style type="text/css">
10
 
10
 
11
#wpsg_mod_productindex_layer { height:20rem; }
11
    #wpsg_mod_productindex_layer { height:20rem; }
12
#wpsg_mod_productindex_layer select,
12
    #wpsg_mod_productindex_layer select,
13
#wpsg_mod_productindex_layer input { width:25rem; }
13
    #wpsg_mod_productindex_layer input { width:25rem; }
14
#wpsg_mod_productindex_layer #wpsg_mod_productindex_hideOrder,
14
    #wpsg_mod_productindex_layer #wpsg_mod_productindex_hideOrder,
15
#wpsg_mod_productindex_layer #wpsg_mod_productindex_hideViewSelect { width:15px; height:15px; }
15
    #wpsg_mod_productindex_layer #wpsg_mod_productindex_hideViewSelect { width:15px; height:15px; }
16
 
16
 
17
</style>
17
</style>
18
 
18
 
19
<br /> 
19
<br /> 
20
 
20
 
Line 88... Line 88...
88
	 	 	
88
	 	 	
89
	</div>
89
	</div>
90
		
90
		
91
</div> 
91
</div> 
92
 
92
 
93
<script type="text/javascript">/* <![CDATA[ */
93
<script>
94
 
94
 
95
	/**
95
	/**
96
	 * Zeigt / Versteckt die Optionen für die Produktübersichtsseite
96
	 * Zeigt / Versteckt die Optionen für die Produktübersichtsseite
97
	 */
97
	 */
98
	function wpsg_mod_productindex_activate()
98
	function wpsg_mod_productindex_activate() {
99
	{
-
 
100
		
99
 
101
		if (jQuery('#wpsg_mod_productindex_active').attr('checked'))
100
		if (jQuery('#wpsg_mod_productindex_active').prop('checked')) {
102
		{
101
 
103
			jQuery('#wpsg_mod_productindex_layer').show();
102
			jQuery('#wpsg_mod_productindex_layer').show();
104
		}
103
 
105
		else
104
		} else {
106
		{
105
 
107
			jQuery('#wpsg_mod_productindex_layer').hide();
106
			jQuery('#wpsg_mod_productindex_layer').hide();
-
 
107
 
108
		}
108
		}
109
		
109
		
110
	} // wpsg_mod_productindex_activate()
-
 
-
 
110
	}
111
	
111
	
112
	function wpsg_mod_productindex_switchShow()
112
	function wpsg_mod_productindex_switchShow() {
113
	{
-
 
114
 
113
 
115
		var show = jQuery('#wpsg_mod_productindex_show').val();
114
		var show = jQuery('#wpsg_mod_productindex_show').val();
116
 
115
 
117
		jQuery('.wpsg_mod_productindex_layershow').hide();
116
		jQuery('.wpsg_mod_productindex_layershow').hide();
118
		jQuery('.wpsg_mod_productindex_layer_' + show).show();
117
		jQuery('.wpsg_mod_productindex_layer_' + show).show();
119
		
118
		
120
	} // function wpsg_mod_productindex_switchShow()
-
 
-
 
119
	}
121
	
120
	
122
	jQuery(document).ready(function() {
121
	jQuery(document).ready(function() {
123
 
122
 
124
		jQuery('#wpsg_mod_productindex_active').bind('change', function() { wpsg_mod_productindex_activate(); } );
123
		jQuery('#wpsg_mod_productindex_active').bind('change', function() { wpsg_mod_productindex_activate(); } );
125
		jQuery('#wpsg_mod_productindex_show').bind('change', function() { wpsg_mod_productindex_switchShow(); } );
124
		jQuery('#wpsg_mod_productindex_show').bind('change', function() { wpsg_mod_productindex_switchShow(); } );
Line 127... Line 126...
127
		wpsg_mod_productindex_activate();		
126
		wpsg_mod_productindex_activate();		
128
		wpsg_mod_productindex_switchShow();
127
		wpsg_mod_productindex_switchShow();
129
 
128
 
130
	} );
129
	} );
131
	
130
	
132
/* ]]> */</script>
-
 
133
131
</script>
-
 
132
134
133