9 lines
129 B
JavaScript
9 lines
129 B
JavaScript
function dirdetails(hash) {
|
|
|
|
$.get('dirprofile' + '?f=&hash=' + hash, function( data ) {
|
|
$.colorbox({ html: data });
|
|
});
|
|
|
|
}
|
|
|