Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15499 | Rev 15763 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
11583 nelberth 1
<?php
11351 nelberth 2
$emojione_image_path_png  = $this->basePath('vendors/smiley/assets/png/');
11583 nelberth 3
$contactsJson = json_encode($contacts);
4
$js = <<<JS
5
const contacts = JSON.parse('$contactsJson');
6
const emojione_image_path_png = "$emojione_image_path_png";
7
JS;
8
$this->inlineScript()->appendScript($js);
15499 stevensc 9
$this->inlineScript()->appendFile('/react-bundles/chat/chatBundle.js');
15762 stevensc 10
$this->headLink()->appendStylesheet('/css/chat.css');
11351 nelberth 11
?>
12
 
11583 nelberth 13
<!-- $is_chat  -->
14
<div id="react-chat"></div>