File tree Expand file tree Collapse file tree 5 files changed +0
-7
lines changed Expand file tree Collapse file tree 5 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ const InsertDocumentStore = Reflux.createStore({
13
13
*/
14
14
init : function ( ) {
15
15
this . filter = { } ;
16
- this . listenToExternalStore ( 'Query.ChangedStore' , this . onQueryChanged . bind ( this ) ) ;
17
16
this . listenTo ( Actions . insertDocument , this . insertDocument ) ;
18
17
this . NamespaceStore = app . appRegistry . getStore ( 'App.NamespaceStore' ) ;
19
18
} ,
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ const LoadMoreDocumentsStore = Reflux.createStore({
24
24
this . counter = 0 ;
25
25
26
26
this . NamespaceStore = app . appRegistry . getStore ( 'App.NamespaceStore' ) ;
27
- this . listenToExternalStore ( 'Query.ChangedStore' , this . onQueryChanged . bind ( this ) ) ;
28
27
this . listenTo ( Actions . fetchNextDocuments , this . fetchNextDocuments . bind ( this ) ) ;
29
28
} ,
30
29
Original file line number Diff line number Diff line change @@ -22,9 +22,6 @@ const ResetDocumentListStore = Reflux.createStore({
22
22
this . project = null ;
23
23
this . ns = '' ;
24
24
25
- // listen for query changes
26
- this . listenToExternalStore ( 'Query.ChangedStore' , this . onQueryChanged . bind ( this ) ) ;
27
-
28
25
Actions . refreshDocuments . listen ( this . reset . bind ( this ) ) ;
29
26
} ,
30
27
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ const CompassExplainStore = Reflux.createStore({
34
34
} ,
35
35
36
36
onActivated ( appRegistry ) {
37
- appRegistry . getStore ( 'Query.ChangedStore' ) . listen ( this . onQueryChanged . bind ( this ) ) ;
38
37
appRegistry . getStore ( 'Indexes.IndexStore' ) . listen ( this . indexesChanged . bind ( this ) ) ;
39
38
appRegistry . getStore ( 'App.NamespaceStore' ) . listen ( this . onNamespaceChanged . bind ( this ) ) ;
40
39
this . CollectionStore = appRegistry . getStore ( 'App.CollectionStore' ) ;
Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ const SchemaStore = Reflux.createStore({
51
51
} ,
52
52
53
53
onActivated ( appRegistry ) {
54
- appRegistry . getStore ( 'Query.ChangedStore' ) . listen ( this . onQueryChanged . bind ( this ) ) ;
55
54
appRegistry . getStore ( 'App.NamespaceStore' ) . listen ( this . onNamespaceChanged . bind ( this ) ) ;
56
55
} ,
57
56
You can’t perform that action at this time.
0 commit comments