Subversion Repositories SmartDukaan

Rev

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

Rev 14026 Rev 14068
Line 282... Line 282...
282
			$(this).html('Hide');
282
			$(this).html('Hide');
283
		}else{
283
		}else{
284
			$(this).html('Others');
284
			$(this).html('Others');
285
		}
285
		}
286
	});
286
	});
-
 
287
	$(document).on('click','.creditedcashbacks',function(){
-
 
288
		if($(this).find('.glyphicon-plus',0).length>0){
-
 
289
			$(this).find('.glyphicon-plus',0).removeClass('glyphicon-plus').addClass('glyphicon-minus');
-
 
290
		}else{
-
 
291
			$(this).find('.glyphicon-minus',0).removeClass('glyphicon-minus').addClass('glyphicon-plus');
-
 
292
		}
-
 
293
		$(this).next().toggleClass('hidden');
-
 
294
	});
-
 
295
	$(document).on('click','.panel-heading',function(){
-
 
296
		if($(this).find('.glyphicon-plus',0).length>0){
-
 
297
			$(this).find('.glyphicon-plus',0).removeClass('glyphicon-plus').addClass('glyphicon-minus');
-
 
298
		}else{
-
 
299
			$(this).find('.glyphicon-minus',0).removeClass('glyphicon-minus').addClass('glyphicon-plus');
-
 
300
		}
-
 
301
	});
287
});
302
});