3D-Renderer-omeka-module/asset/js/height_calculator.js

6 lines
155 B
JavaScript
Raw Permalink Normal View History

2021-10-13 13:12:29 +02:00
function get_height(container, ratio) {
var height = $(container).width() / ratio
//console.log(ratio, $(container).width(), height)
return height
}