11 lines
217 B
JavaScript
11 lines
217 B
JavaScript
function dirdetails(hash) {
|
|
|
|
$.get('dirprofile' + '?f=&hash=' + hash, function( data ) {
|
|
$.colorbox({ maxWidth: "50%", maxHeight: "75%", html: data });
|
|
});
|
|
|
|
}
|
|
|
|
$(document).ready(function() {
|
|
collapseHeight();
|
|
}); |