mirror of
https://github.com/owncast/owncast.git
synced 2024-11-25 14:20:54 +03:00
cleanup
This commit is contained in:
parent
0af67c0cdc
commit
e12de3215f
2 changed files with 1 additions and 26 deletions
|
@ -46,7 +46,6 @@ class Owncast {
|
||||||
el: '#app-container',
|
el: '#app-container',
|
||||||
data: {
|
data: {
|
||||||
isOnline: false,
|
isOnline: false,
|
||||||
// layout: hasTouchScreen() ? 'touch' : 'desktop',
|
|
||||||
messages: [],
|
messages: [],
|
||||||
overallMaxViewerCount: 0,
|
overallMaxViewerCount: 0,
|
||||||
sessionMaxViewerCount: 0,
|
sessionMaxViewerCount: 0,
|
||||||
|
|
|
@ -72,15 +72,6 @@ class MessagingInterface {
|
||||||
this.btnSubmitMessage.addEventListener('click', this.handleSubmitChatButton.bind(this));
|
this.btnSubmitMessage.addEventListener('click', this.handleSubmitChatButton.bind(this));
|
||||||
|
|
||||||
this.initLocalStates();
|
this.initLocalStates();
|
||||||
|
|
||||||
// if (hasTouchScreen()) {
|
|
||||||
// this.scrollableMessagesContainer = document.body;
|
|
||||||
// this.tagAppContainer.classList.add('touch-screen');
|
|
||||||
// window.onorientationchange = this.handleOrientationChange.bind(this);
|
|
||||||
// this.handleOrientationChange();
|
|
||||||
// } else {
|
|
||||||
// this.tagAppContainer.classList.add('desktop');
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
setWebsocket(socket) {
|
setWebsocket(socket) {
|
||||||
|
@ -113,22 +104,7 @@ class MessagingInterface {
|
||||||
this.tagAppContainer.classList.remove('chat');
|
this.tagAppContainer.classList.remove('chat');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/*
|
|
||||||
handleOrientationChange() {
|
|
||||||
var isPortrait = Math.abs(window.orientation % 180) === 0;
|
|
||||||
if(!isPortrait) {
|
|
||||||
if (document.body.clientWidth < 1024) {
|
|
||||||
this.tagAppContainer.classList.add('no-chat');
|
|
||||||
this.tagAppContainer.classList.add('landscape');
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if (this.chatDisplayed) {
|
|
||||||
this.tagAppContainer.classList.remove('no-chat');
|
|
||||||
}
|
|
||||||
this.tagAppContainer.classList.remove('landscape');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
handleChatToggle() {
|
handleChatToggle() {
|
||||||
this.chatDisplayed = !this.chatDisplayed;
|
this.chatDisplayed = !this.chatDisplayed;
|
||||||
|
|
Loading…
Reference in a new issue