Subversion Repositories SmartDukaan

Rev

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

Rev 2939 Rev 2941
Line 24... Line 24...
24
			// Post was not published
24
			// Post was not published
25
		}
25
		}
26
	});
26
	});
27
}
27
}
28
 
28
 
-
 
29
function tellAFriend(id, name, price)	{
-
 
30
	
-
 
31
}
-
 
32
 
29
$(function(){
33
$(function(){
30
    var e = document.createElement('script');
34
    var e = document.createElement('script');
31
    e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
35
    e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
32
    e.async = true;
36
    e.async = true;
33
    document.getElementById('fb-root').appendChild(e);
37
    document.getElementById('fb-root').appendChild(e);
Line 43... Line 47...
43
			message: 'Check out Android Festival on Saholic.com - Massive discounts on hot selling Android smart phones'
47
			message: 'Check out Android Festival on Saholic.com - Massive discounts on hot selling Android smart phones'
44
		});
48
		});
45
	});
49
	});
46
	
50
	
47
	$('.link-coupon').click(function(){
51
	$('.link-coupon').click(function(){
48
		console.log('clicked');
-
 
49
		$(this).hide()
-
 
50
			.siblings('span.coupon').show();
52
		$(this).hide().siblings('span.coupon').show();
51
	});
53
	});
52
});
54
});
53
55