gecko-dev/browser/components/loop
Andrei Oprea f3affdedea Bug 1040901 - Make Loop incoming call view match MVP spec, r=dmose
--HG--
rename : browser/components/loop/content/js/conversation.js => browser/components/loop/content/js/conversation.jsx
2014-07-18 15:50:10 -07:00
..
content Bug 1040901 - Make Loop incoming call view match MVP spec, r=dmose 2014-07-18 15:50:10 -07:00
standalone Bug 1020448 - Add Loop pending call timeout for the link clicker UI. r=Standard8,ui-review=dhenein 2014-07-16 15:15:08 +01:00
test Bug 1040901 - Make Loop incoming call view match MVP spec, r=dmose 2014-07-18 15:50:10 -07:00
.gitignore Bug 1033715 - Add build script to transpile JSX files to JS, r=dmose 2014-07-07 14:45:00 -07:00
build-jsx Bug 1033715 - Add build script to transpile JSX files to JS, r=dmose 2014-07-07 14:45:00 -07:00
jar.mn Bug 1033843 Change the Loop conversation window to use React-based views. Patch by dmose and nperriault. r=Standard8 2014-07-14 20:37:27 +01:00
manifest.ini Bug 994483 Add Loop unit tests to tbpl. r=dburns 2014-06-05 15:45:16 +01:00
moz.build Bug 1033362 Implement basic mochitests for MozLoopAPI. r=dolske,r=glandium 2014-07-15 10:03:03 +01:00
MozLoopAPI.jsm Bug 1020876 Route desktop client XHRs though the mozLoop API to share hawk implementation with MozLoopService. r=ttaubert 2014-07-03 09:23:38 +01:00
MozLoopPushHandler.jsm Bug 1002414 - Part 1: Add retry logic to PushServer user agent. r=standard8 2014-07-17 15:28:38 -07:00
MozLoopService.jsm Bug 1038699 - Loop no longer resets the hawk session token when it is invalid. Handle the new server responses. r=dmose 2014-07-18 11:42:44 -07:00
MozLoopWorker.js Bug 998989 - anonymize sensitive data in telemetry log. r=ekr, r=dveditz 2014-07-10 19:53:44 -04:00
README.txt Bug 1033715 - Add build script to transpile JSX files to JS, r=dmose 2014-07-07 14:45:00 -07:00
run-all-loop-tests.sh Bug 1039757 Add a script to run relevant unit tests for Loop. r=dmose 2014-07-17 09:27:47 +01:00

This is the directory for the Loop desktop implementation and the standalone
client.

The desktop implementation is the UX built into Firefox, activated by the Loop
button on the toolbar. The standalone client is the link-clicker UX for any
modern browser that supports WebRTC.

The standalone client is a set of web pages intended to be hosted on a
standalone server referenced by the loop-server.

The standalone client exists in standalone/ but shares items
(from content/shared/) with the desktop implementation. See the README.md
file in the standalone/ directory for how to run the server locally.


Working with JSX
================

You need to install the JSX compiler using npm in order to compile the .jsx
files into regular .js ones:

    npm install -g react-tools

Once installed, run build-jsx with the --watch option from
browser/components/loop, eg.:

    cd browser/components/loop
    ./build-jsx --watch

build-jsx can also be do a one-time compile pass instead of watching if
the --watch argument is omitted.  Be sure to commit any transpiled files
at the same time as changes to their sources.