8 lines
284 B
JavaScript
Vendored
8 lines
284 B
JavaScript
Vendored
function calculateSize(targetId) {
|
|
setTimeout(function(){
|
|
$('#' + targetId).height($('#' + targetId).children(":first").height());
|
|
$('#' + targetId).width($('#' + targetId).children(":first").width());
|
|
}, 500);
|
|
$('#' + targetId).css({backgroundColor: 'transparent'});
|
|
}
|