├── .distignore ├── .editorconfig ├── .gitignore ├── Gruntfile.js ├── README.md ├── admin.css ├── chatwoot-plugin.php ├── js └── chatwoot.js ├── languages └── chatwoot-plugin.pot ├── package.json ├── readme.txt └── yarn.lock /.distignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/wp-plugin/HEAD/.distignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/wp-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store 2 | vendor/ 3 | node_modules/ 4 | build/ 5 | 6 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/wp-plugin/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/wp-plugin/HEAD/README.md -------------------------------------------------------------------------------- /admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/wp-plugin/HEAD/admin.css -------------------------------------------------------------------------------- /chatwoot-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/wp-plugin/HEAD/chatwoot-plugin.php -------------------------------------------------------------------------------- /js/chatwoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/wp-plugin/HEAD/js/chatwoot.js -------------------------------------------------------------------------------- /languages/chatwoot-plugin.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/wp-plugin/HEAD/languages/chatwoot-plugin.pot -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/wp-plugin/HEAD/package.json -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/wp-plugin/HEAD/readme.txt -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/wp-plugin/HEAD/yarn.lock --------------------------------------------------------------------------------