removed friends.js

v1.18.x
Baris Soner Usakli 12 years ago
parent 39cf0476d3
commit b0111274ad

@ -1,44 +0,0 @@
(function() {
var yourid = templates.get('yourid'),
theirid = templates.get('theirid'),
friendCount = templates.get('friendCount');
$(document).ready(function() {
if(parseInt(friendCount, 10) === 0) {
$('#no-friend-notice').show();
}
var editLink = $('#editLink');
if(yourid !== theirid) {
editLink.hide();
$('.remove-friend-btn').hide();
}
else {
$('.remove-friend-btn').on('click',function(){
var removeBtn = $(this);
var friendid = $(this).attr('friendid');
$.post('/users/removefriend', {uid: friendid},
function(data) {
removeBtn.parent().remove();
}
);
return false;
});
}
$('.reputation').each(function(index, element) {
$(element).html(app.addCommas($(element).html()));
});
$('.postcount').each(function(index, element) {
$(element).html(app.addCommas($(element).html()));
});
});
}());
Loading…
Cancel
Save