-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Metabolic pathways visualisation (#731): species column and filter * Metabolic pathways visualisation (#731): #issuecomment-1082810606 * Metabolic pathways visualisation (#731): get species for filtering from track * GUI Pathways: localStorage key for columns change (migration), force fetching pathways on panel activated Co-authored-by: Mikhail Rodichenko <[email protected]>
- Loading branch information
1 parent
b498720
commit d5a80a2
Showing
23 changed files
with
625 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
...p/components/ngbPathways/ngbInternalPathwaysTable/ngbInternalPathwaysTableFilter/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import angular from 'angular'; | ||
import filterList from './ngbInternalPathwaysFilterList'; | ||
|
||
// Import internal modules | ||
import component from './ngbInternalPathwaysTableFilter.component'; | ||
import controller from './ngbInternalPathwaysTableFilter.controller'; | ||
import './ngbInternalPathwaysTableFilter.scss'; | ||
|
||
// Import external modules | ||
export default angular.module('ngbInternalPathwaysTableFilter', [filterList]) | ||
.controller(controller.UID, controller) | ||
.component('ngbInternalPathwaysTableFilter', component) | ||
.name; |
14 changes: 14 additions & 0 deletions
14
...ternalPathwaysTable/ngbInternalPathwaysTableFilter/ngbInternalPathwaysFilterList/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import angular from 'angular'; | ||
import scroller from '../../../../../shared/filter/filterList/ngbFilterList.scroller'; | ||
|
||
// Import internal modules | ||
import component from './ngbInternalPathwaysFilterList.component'; | ||
import controller from './ngbInternalPathwaysFilterList.controller'; | ||
import './ngbInternalPathwaysFilterList.scss'; | ||
|
||
// Import external modules | ||
export default angular.module('ngbInternalPathwaysFilterList', []) | ||
.directive('preventParentScroll', scroller) | ||
.controller(controller.UID, controller) | ||
.component('ngbInternalPathwaysFilterList', component) | ||
.name; |
Oops, something went wrong.