7 lines
191 B
JavaScript
7 lines
191 B
JavaScript
|
video = document.getElementById('video_bg');
|
||
|
if (isportrait === true) {
|
||
|
video.setAttribute('height', $(window).height());
|
||
|
} else {
|
||
|
video.setAttribute('height', $(window).height());
|
||
|
}
|