├── Procfile ├── public ├── css │ ├── baobab-light.less │ ├── baobab-dark.less │ ├── dropzone.css │ ├── mixins.less │ ├── angular-animation.css │ └── baobab.less ├── img │ ├── favicon.png │ ├── tab_drafts@2x.png │ ├── tab_inbox@2x.png │ ├── tab_logout@2x.png │ ├── tab_sent@2x.png │ ├── tab_theme@2x.png │ └── tab_archive@2x.png ├── partials │ ├── tag.html │ ├── compose-zen.html │ ├── message.html │ ├── compose.html │ ├── thread.html │ └── thread_list.html ├── sound │ ├── scrollUp.mp3 │ ├── backspace.mp3 │ ├── key-new-01.mp3 │ ├── key-new-02.mp3 │ ├── key-new-03.mp3 │ ├── key-new-04.mp3 │ ├── key-new-05.mp3 │ ├── return-new.mp3 │ ├── scrollDown.mp3 │ └── space-new.mp3 ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── js │ ├── baobab.service.tags.coffee │ ├── baobab.service.contacts.coffee │ ├── error.coffee │ ├── baobab.directive.inParticipantBubble.coffee │ ├── baobab.directive.scribe.coffee │ ├── baobab.service.namespace.coffee │ ├── baobab.directive.inBindIframeContents.coffee │ ├── baobab.directive.inParticipants.coffee │ ├── minievents.js │ ├── baobab.service.scrollstate.coffee │ ├── baobab.directive.autofocus.coffee │ ├── baobab.directive.dropzone.coffee │ ├── baobab.controller.app.coffee │ ├── baobab.service.auth.coffee │ ├── baobab.directive.typewriter.coffee │ ├── main.coffee │ ├── infinite-scroll.js │ ├── baobab.directive.hotkeys.coffee │ ├── baobab.service.threads.coffee │ ├── app.js │ ├── baobab.filter.coffee │ ├── baobab.controller.compose.coffee │ ├── baobab.controller.thread.coffee │ ├── baobab.controller.threadList.coffee │ ├── baobab.directive.autocomplete.coffee │ ├── FileSaver.js │ └── bootstrap-tokenfield.js ├── set-app-id.html ├── scratch │ └── attachments.html └── index.html ├── arclib ├── __phutil_library_init__.php └── __phutil_library_map__.php ├── .gitmodules ├── screenshots ├── screenshot_reply.png ├── screenshot_thread.png ├── screenshot_compose.png ├── screenshot_threads.png └── screenshot_dark_theme.png ├── .arcconfig ├── .gitignore ├── .jshintrc ├── test ├── filter │ ├── tag_expand-spec.coffee │ ├── pretty_size-spec.coffee │ ├── shorten-spec.coffee │ ├── not_me-spec.coffee │ └── participants-spec.coffee ├── test-main.coffee └── controller │ ├── thread-spec.coffee │ └── compose-spec.coffee ├── .jscsrc ├── server.js ├── bower.json ├── LICENSE.md ├── package.json ├── karma.conf.js ├── coffeelint.json ├── gulpfile.js ├── CONTRIBUTING.md └── README.md /Procfile: -------------------------------------------------------------------------------- 1 | web: node server.js -------------------------------------------------------------------------------- /public/css/baobab-light.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arclib/__phutil_library_init__.php: -------------------------------------------------------------------------------- 1 | {{tag.email}}{{tag.name}} -------------------------------------------------------------------------------- /public/sound/scrollUp.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/inbox-scaffold-html5/HEAD/public/sound/scrollUp.mp3 -------------------------------------------------------------------------------- /public/img/tab_drafts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/inbox-scaffold-html5/HEAD/public/img/tab_drafts@2x.png -------------------------------------------------------------------------------- /public/img/tab_inbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/inbox-scaffold-html5/HEAD/public/img/tab_inbox@2x.png -------------------------------------------------------------------------------- /public/img/tab_logout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/inbox-scaffold-html5/HEAD/public/img/tab_logout@2x.png -------------------------------------------------------------------------------- /public/img/tab_sent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/inbox-scaffold-html5/HEAD/public/img/tab_sent@2x.png -------------------------------------------------------------------------------- /public/img/tab_theme@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/inbox-scaffold-html5/HEAD/public/img/tab_theme@2x.png -------------------------------------------------------------------------------- /public/sound/backspace.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/inbox-scaffold-html5/HEAD/public/sound/backspace.mp3 -------------------------------------------------------------------------------- /public/sound/key-new-01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/inbox-scaffold-html5/HEAD/public/sound/key-new-01.mp3 -------------------------------------------------------------------------------- /public/sound/key-new-02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/inbox-scaffold-html5/HEAD/public/sound/key-new-02.mp3 -------------------------------------------------------------------------------- /public/sound/key-new-03.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/inbox-scaffold-html5/HEAD/public/sound/key-new-03.mp3 -------------------------------------------------------------------------------- /public/sound/key-new-04.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/inbox-scaffold-html5/HEAD/public/sound/key-new-04.mp3 -------------------------------------------------------------------------------- /public/sound/key-new-05.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/inbox-scaffold-html5/HEAD/public/sound/key-new-05.mp3 -------------------------------------------------------------------------------- /public/sound/return-new.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/inbox-scaffold-html5/HEAD/public/sound/return-new.mp3 -------------------------------------------------------------------------------- /public/sound/scrollDown.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/inbox-scaffold-html5/HEAD/public/sound/scrollDown.mp3 -------------------------------------------------------------------------------- /public/sound/space-new.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/inbox-scaffold-html5/HEAD/public/sound/space-new.mp3 -------------------------------------------------------------------------------- /public/img/tab_archive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nylas/inbox-scaffold-html5/HEAD/public/img/tab_archive@2x.png -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "vendor/inbox.js"] 2 | path = vendor/inbox.js 3 | url = https://github.com/inboxapp/inbox.js.git 4 | -------------------------------------------------------------------------------- /public/partials/compose-zen.html: -------------------------------------------------------------------------------- 1 |
Paste your Inbox App ID below to test-drive the Inbox Client. If you've forked the repository to create your own app, hardcode your App ID in /public/js/app.js.
29 |
You can create an app here. Make sure you set the callback URL to the URL of the app.
31 |57 | This thread does not contain any messages. 58 |
59 |