Skip to content

Commit

Permalink
Merge pull request facebook#125 from joyvuu-dave/master
Browse files Browse the repository at this point in the history
Update inline documentation
  • Loading branch information
fisherwebdev committed Jan 14, 2015
2 parents 104caf6 + f677d77 commit 481cf32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions dist/Flux.js
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,11 @@ var _prefix = 'ID_';
* flightDispatcher.register(function(payload) {
* switch (payload.actionType) {
* case 'country-update':
* case 'city-update':
* flightDispatcher.waitFor([CityStore.dispatchToken]);
* FlightPriceStore.price =
* getFlightPriceStore(CountryStore.country, CityStore.city);
* break;
*
* case 'city-update':
* FlightPriceStore.price =
* FlightPriceStore(CountryStore.country, CityStore.city);
* break;
* }
* });
*
Expand Down
6 changes: 1 addition & 5 deletions src/Dispatcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,11 @@ var _prefix = 'ID_';
* flightDispatcher.register(function(payload) {
* switch (payload.actionType) {
* case 'country-update':
* case 'city-update':
* flightDispatcher.waitFor([CityStore.dispatchToken]);
* FlightPriceStore.price =
* getFlightPriceStore(CountryStore.country, CityStore.city);
* break;
*
* case 'city-update':
* FlightPriceStore.price =
* FlightPriceStore(CountryStore.country, CityStore.city);
* break;
* }
* });
*
Expand Down

0 comments on commit 481cf32

Please sign in to comment.