Files
stand/public/assets/scripts/main.js

20 lines
337 B
JavaScript
Raw Normal View History

2020-12-20 20:28:40 -03:00
function resize() {
let p = 400 / 1030
$('.container').each(function(i, el) {
let height = $(this).height
let width = $(this).width
$(this).width = height * p;
})
}
2020-12-18 15:05:09 -03:00
$(document).ready(function() {
$('.sticky').sticky({
context: '#column'
})
2020-12-20 20:28:40 -03:00
$('.shopping.cart').innerText = 0
window.onresize = resize;
2020-12-18 15:05:09 -03:00
})