Subversion Repositories SmartDukaan

Rev

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

Rev 25393 Rev 27754
Line 1... Line 1...
1
$(function() {
1
$(function() {
2
 
2
 
3
	$(".feature").live('click', function() {
3
	$(document).on('click', ".feature", function() {
4
		loadFeaturePanel("main-content");
4
		loadFeaturePanel("main-content");
5
	});
5
	});
6
	
6
	
7
	$(".content").on('click', function() {
7
	$(".content").on('click', function() {
8
		loadContentPanel("main-content");
8
		loadContentPanel("main-content");
Line 61... Line 61...
61
 
61
 
62
					return false;
62
					return false;
63
				}
63
				}
64
			});
64
			});
65
 
65
 
66
	$(".editfeature").live('click', function() {
66
	$(document).on('click', ".editfeature", function() {
67
		rank = $(this).data('rank');
67
		rank = $(this).data('rank');
68
		catalogItemId = $(this).data('requestid');
68
		catalogItemId = $(this).data('requestid');
69
		$('#catalogItemid').attr('readonly', true);
69
		$('#catalogItemid').attr('readonly', true);
70
		feature = $(this).data('feature');
70
		feature = $(this).data('feature');
71
		$('#catalogItemid').val(catalogItemId);
71
		$('#catalogItemid').val(catalogItemId);