6 lines
169 B
JavaScript
6 lines
169 B
JavaScript
|
let doResize = function(){
|
||
|
let chatInput = document.getElementsByClassName('chatInput')[0]
|
||
|
chatInput.style.width = "50%";
|
||
|
}
|
||
|
doResize()
|
||
|
window.onresize = doResize
|