@@ -28,9 +28,9 @@ const Messages = {
28
28
// ..
29
29
register () {
30
30
return {
31
- [send .open ] : Messages .addLoading ,
32
- [send .done ] : Messages .add ,
33
- [send .error ] : Messages .addError
31
+ [send .open ]: Messages .addLoading ,
32
+ [send .done ]: Messages .add ,
33
+ [send .error ]: Messages .addError
34
34
}
35
35
}
36
36
}
@@ -44,12 +44,12 @@ creator. Domains can hook into the different states of that action as the
44
44
action creator resolves. These states _ loosely_ follow the
45
45
` readyState ` property of ` XMLHTTPRequest ` :
46
46
47
- 1 . ** unset** : Nothing has happened yet. The action creator has not
48
- started.
49
- 2 . ** open** : The action creator has started working, such as the opening
50
- of an XHR request, however no response has been given.
51
- 3 . ** loading** : The action creator is partially complete, such as
52
- downloading a response from a server.
53
- 4 . ** done** : The action creator has resolved.
54
- 5 . ** cancelled** : The action was cancelled, like if an XHR request is
55
- aborted.
47
+ 1 . ** unset** : Nothing has happened yet. The action creator has not
48
+ started.
49
+ 2 . ** open** : The action creator has started working, such as the opening
50
+ of an XHR request, however no response has been given.
51
+ 3 . ** loading** : The action creator is partially complete, such as
52
+ downloading a response from a server.
53
+ 4 . ** done** : The action creator has resolved.
54
+ 5 . ** cancelled** : The action was cancelled, like if an XHR request is
55
+ aborted.
0 commit comments