Файл: InstantSocial/uploud/modules/mod_friends_of_friends/js/general_friends.js
Строк: 46
<?php
function ShowMyModal(user_id) {
$(document).ready(function(){
var s = '#general'+user_id;
$(s).dialog({
position: ["center","center"],
autoOpen: true,
maxHeight : 600,
maxWidth : 600,
});
if(user_id){
$.post('/modules/mod_friends_of_friends/ajax/general_friends.php',{'user_id': user_id}, function(data){
$(s).html(data);
});
}
});
}
function MixTable(){
$.post('/modules/mod_friends_of_friends/ajax/more.php', function(data){
$("#modoffriends").parent('.modulebody').html(data);
});
}
function AllOfFriends(offriends_str){
$(document).ready(function(){
$("#all_offriends").dialog({
position: ["center","center"],
autoOpen: true,
maxHeight : 600,
maxWidth : 600,
});
if(offriends_str){
$.post('/modules/mod_friends_of_friends/ajax/all_offriends.php',{'offriends_str': offriends_str}, function(data){
$("#all_offriends").html(data);
});
}
});
}
?>