├── .gitignore ├── Gruntfile.coffee ├── README.md ├── almond.js ├── bower.json ├── helpscout-amd.js ├── helpscout.css ├── helpscout.js ├── index.html ├── lib ├── end.frag └── start.frag ├── package.json ├── proxies ├── php │ ├── README.md │ ├── config.php │ └── proxy.php └── rails │ ├── README.md │ └── proxy_controller.rb └── src ├── scripts ├── api.coffee ├── conversations.coffee ├── main.coffee ├── utils.coffee └── view.coffee └── styles └── helpscout.styl /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/README.md -------------------------------------------------------------------------------- /almond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/almond.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/bower.json -------------------------------------------------------------------------------- /helpscout-amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/helpscout-amd.js -------------------------------------------------------------------------------- /helpscout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/helpscout.css -------------------------------------------------------------------------------- /helpscout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/helpscout.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/index.html -------------------------------------------------------------------------------- /lib/end.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/lib/end.frag -------------------------------------------------------------------------------- /lib/start.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/lib/start.frag -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/package.json -------------------------------------------------------------------------------- /proxies/php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/proxies/php/README.md -------------------------------------------------------------------------------- /proxies/php/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/proxies/php/config.php -------------------------------------------------------------------------------- /proxies/php/proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/proxies/php/proxy.php -------------------------------------------------------------------------------- /proxies/rails/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/proxies/rails/README.md -------------------------------------------------------------------------------- /proxies/rails/proxy_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/proxies/rails/proxy_controller.rb -------------------------------------------------------------------------------- /src/scripts/api.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/src/scripts/api.coffee -------------------------------------------------------------------------------- /src/scripts/conversations.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/src/scripts/conversations.coffee -------------------------------------------------------------------------------- /src/scripts/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/src/scripts/main.coffee -------------------------------------------------------------------------------- /src/scripts/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/src/scripts/utils.coffee -------------------------------------------------------------------------------- /src/scripts/view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/src/scripts/view.coffee -------------------------------------------------------------------------------- /src/styles/helpscout.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helpscout/help-scout-widget/HEAD/src/styles/helpscout.styl --------------------------------------------------------------------------------