mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
11 lines
340 B
JavaScript
11 lines
340 B
JavaScript
import Chat from '../components/chat.js'
|
|
import InternalMessages from "../components/internalMessagesSection.js"
|
|
|
|
$(document).ready(() => {
|
|
let chat = new Chat($("#chat-presupuesto"))
|
|
chat.init()
|
|
chat.initPresupuesto()
|
|
let internalMessages = new InternalMessages($("#internal_messages_chat"))
|
|
internalMessages.init()
|
|
|
|
}) |