21 lines
376 B
JavaScript
21 lines
376 B
JavaScript
function resize() {
|
|
let p = 400 / 944
|
|
$('.container').each(function(i, el) {
|
|
let height = $(this).height
|
|
let width = $(this).width
|
|
|
|
$(this).width = height * p;
|
|
})
|
|
}
|
|
|
|
$(document).ready(function() {
|
|
$('.menu.sticky').sticky()
|
|
$('.column2 .sticky').sticky({
|
|
context: '#column'
|
|
})
|
|
|
|
$('.shopping.cart').innerText = 0
|
|
|
|
//window.onresize = resize;
|
|
})
|