9ef71c07dd
* remember if task app was open, and restore when in fullpage mode * refactoring
14 lines
414 B
JavaScript
14 lines
414 B
JavaScript
import { api } from '@converse/headless/core'
|
|
import tplMUCChatarea from '../../src/plugins/muc-views/templates/muc-chatarea.js'
|
|
import { html } from 'lit'
|
|
|
|
export default (o) => {
|
|
return html`
|
|
${
|
|
o?.model && api.settings.get('livechat_task_app_enabled')
|
|
? html`<livechat-converse-muc-task-app .model=${o.model}></livechat-converse-muc-task-app>`
|
|
: ''
|
|
}
|
|
${tplMUCChatarea(o)}`
|
|
}
|