mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
feat : add chat in facturas,presupuestos y pedidos
This commit is contained in:
@ -1,4 +1,6 @@
|
||||
import Chat from '../components/chat.js'
|
||||
|
||||
let chat = new Chat($("#chat-factura"))
|
||||
chat.initFactura()
|
||||
chat.init()
|
||||
chat.initFactura()
|
||||
chat._handleListContacts()
|
||||
5
httpdocs/assets/js/safekat/pages/chatGeneral.js
Normal file
5
httpdocs/assets/js/safekat/pages/chatGeneral.js
Normal file
@ -0,0 +1,5 @@
|
||||
import Chat from '../components/chat.js'
|
||||
|
||||
let chat = new Chat($("#chat-general"))
|
||||
chat.init()
|
||||
chat._handleListContacts()
|
||||
@ -2,4 +2,5 @@ import Chat from '../components/chat.js'
|
||||
|
||||
let chat = new Chat($("#chat-pedido"))
|
||||
chat.init()
|
||||
chat.initPedido()
|
||||
chat.initPedido()
|
||||
chat._handleListContacts()
|
||||
@ -2,6 +2,9 @@
|
||||
position: relative;
|
||||
height: calc(100vh - 11.5rem) !important;
|
||||
}
|
||||
a.send-msg-btn {
|
||||
color: white
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
.layout-horizontal .app-chat {
|
||||
height: calc(100vh - 11.5rem - 2.2rem) !important;
|
||||
|
||||
Reference in New Issue
Block a user