1.0.0 • Published 7 years ago

js-web-mchat v1.0.0

Weekly downloads
1
License
ISC
Repository
github
Last release
7 years ago

Web Chat

Para executar um teste do web-chat:

  • Ter o jquery e angular >=1.6.6
  • Adcionar o arquivo lib/script.js ao seu script
  • Referenciar arquivo lib/style.css
  • Em uma tag qualquer com corpo referenciar o modulo angular 'chatApp' e colocar a tag :
       <body>
           <!-- Qualquer tag com corpo -->
           <ANY ng-app='chatApp'>
               <!-- Seu chat sera inserido aqui -->
               <chat></chat>
           </ANY
       </body>
    angular.module('chatApp').config(function(botAPIProvider){
        botAPIProvider.setBaseUrl('your-url-here');
    });