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({
1313 */
1414 init : function ( ) {
1515 this . filter = { } ;
16- this . listenToExternalStore ( 'Query.ChangedStore' , this . onQueryChanged . bind ( this ) ) ;
1716 this . listenTo ( Actions . insertDocument , this . insertDocument ) ;
1817 this . NamespaceStore = app . appRegistry . getStore ( 'App.NamespaceStore' ) ;
1918 } ,
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ const LoadMoreDocumentsStore = Reflux.createStore({
2424 this . counter = 0 ;
2525
2626 this . NamespaceStore = app . appRegistry . getStore ( 'App.NamespaceStore' ) ;
27- this . listenToExternalStore ( 'Query.ChangedStore' , this . onQueryChanged . bind ( this ) ) ;
2827 this . listenTo ( Actions . fetchNextDocuments , this . fetchNextDocuments . bind ( this ) ) ;
2928 } ,
3029
Original file line number Diff line number Diff line change @@ -22,9 +22,6 @@ const ResetDocumentListStore = Reflux.createStore({
2222 this . project = null ;
2323 this . ns = '' ;
2424
25- // listen for query changes
26- this . listenToExternalStore ( 'Query.ChangedStore' , this . onQueryChanged . bind ( this ) ) ;
27-
2825 Actions . refreshDocuments . listen ( this . reset . bind ( this ) ) ;
2926 } ,
3027
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ const CompassExplainStore = Reflux.createStore({
3434 } ,
3535
3636 onActivated ( appRegistry ) {
37- appRegistry . getStore ( 'Query.ChangedStore' ) . listen ( this . onQueryChanged . bind ( this ) ) ;
3837 appRegistry . getStore ( 'Indexes.IndexStore' ) . listen ( this . indexesChanged . bind ( this ) ) ;
3938 appRegistry . getStore ( 'App.NamespaceStore' ) . listen ( this . onNamespaceChanged . bind ( this ) ) ;
4039 this . CollectionStore = appRegistry . getStore ( 'App.CollectionStore' ) ;
Original file line number Diff line number Diff line change @@ -51,7 +51,6 @@ const SchemaStore = Reflux.createStore({
5151 } ,
5252
5353 onActivated ( appRegistry ) {
54- appRegistry . getStore ( 'Query.ChangedStore' ) . listen ( this . onQueryChanged . bind ( this ) ) ;
5554 appRegistry . getStore ( 'App.NamespaceStore' ) . listen ( this . onNamespaceChanged . bind ( this ) ) ;
5655 } ,
5756
You can’t perform that action at this time.
0 commit comments