Merge pull request #2564 from hmhealey/actions

Added RECEIVED_ANALYTICS action
Этот коммит содержится в:
Christopher Speller
2016-03-29 16:49:42 -04:00
родитель 9c36210edd 517cd301d3
Коммит 29f4548fea
2 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@@ -9,7 +9,7 @@ const PayloadSources = Constants.PayloadSources;
const AppDispatcher = Object.assign(new Flux.Dispatcher(), {
handleServerAction: function performServerAction(action) {
if (!action.type) {
console.log('handleServerAction called with undefined action type'); // eslint-disable-line no-console
console.warning('handleServerAction called with undefined action type'); // eslint-disable-line no-console
}
var payload = {
@@ -21,7 +21,7 @@ const AppDispatcher = Object.assign(new Flux.Dispatcher(), {
handleViewAction: function performViewAction(action) {
if (!action.type) {
console.log('handleServerAction called with undefined action type'); // eslint-disable-line no-console
console.warning('handleViewAction called with undefined action type'); // eslint-disable-line no-console
}
var payload = {

Просмотреть файл

@@ -68,6 +68,7 @@ export default {
RECEIVED_PREFERENCE: null,
RECEIVED_PREFERENCES: null,
RECEIVED_FILE_INFO: null,
RECEIVED_ANALYTICS: null,
RECEIVED_MSG: null,