├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── bitrix24-logo-social.png └── bitrix24-logo.png ├── composer.json └── src └── bx24-wrapper.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-tech/bx24-wrapper-js/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | examples/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-tech/bx24-wrapper-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-tech/bx24-wrapper-js/HEAD/README.md -------------------------------------------------------------------------------- /assets/bitrix24-logo-social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-tech/bx24-wrapper-js/HEAD/assets/bitrix24-logo-social.png -------------------------------------------------------------------------------- /assets/bitrix24-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-tech/bx24-wrapper-js/HEAD/assets/bitrix24-logo.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-tech/bx24-wrapper-js/HEAD/composer.json -------------------------------------------------------------------------------- /src/bx24-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrey-tech/bx24-wrapper-js/HEAD/src/bx24-wrapper.js --------------------------------------------------------------------------------