Subversion Repositories SmartDukaan

Rev

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

Rev 5145 Rev 6866
Line 28... Line 28...
28
	activeTab("catTab1");
28
	activeTab("catTab1");
29
	
29
	
30
	// Hide other tab common content for best deals, latest arrivals, best sellers
30
	// Hide other tab common content for best deals, latest arrivals, best sellers
31
	hideShowTabContent("otherTabContent", "hide");
31
	hideShowTabContent("otherTabContent", "hide");
32
	
32
	
33
	// Adjust current filters section css
-
 
34
	if($("#currentFilters:visible").length === 0){
-
 
35
		$("#filterBy h2").css("margin-top", "0");
-
 
36
		$("#currentFilters").css("padding-bototom", "0");
-
 
37
	}
-
 
38
	
33
	
39
	// Filter by heading slideup and slidedown
34
	// Filter by heading slideup and slidedown
40
	filterByOptionSlide();
35
	filterByOptionSlide();
41
	
36
	
42
	// Filter by values selection
37
	// Filter by values selection
Line 72... Line 67...
72
 
67
 
73
/*
68
/*
74
 *  Filter by values selection
69
 *  Filter by values selection
75
*/
70
*/
76
function filterByValues(){
71
function filterByValues(){
77
	
-
 
78
	// Talk time
-
 
79
	$("#filterByTalkTime .filterOption a").click(function(){
-
 
80
		var id = $(this).attr("id");
-
 
81
		var v = $("#" + id).text();
-
 
82
	});
-
 
83
	
-
 
84
	// Data Connectivity
72
	// Data Connectivity
85
	$("#filterByDataConnectivity .filterOption a").click(function(){
73
	$("#filterByDataConnectivity .filterOption a").click(function(){
86
		var v =  $(this).text();
74
		var v =  $(this).text();
87
	});
75
	});
88
	
76