Files
stand/assets/js/main.js
2020-12-20 20:28:40 -03:00

20 lines
337 B
JavaScript

function resize() {
let p = 400 / 1030
$('.container').each(function(i, el) {
let height = $(this).height
let width = $(this).width
$(this).width = height * p;
})
}
$(document).ready(function() {
$('.sticky').sticky({
context: '#column'
})
$('.shopping.cart').innerText = 0
window.onresize = resize;
})