mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 06:27:48 +00:00
94b306e129
SearchController now attempts to convert the filetree into a list format. Still needs to be modified to be asynchronous.
30 lines
889 B
JSON
30 lines
889 B
JSON
{
|
|
"name": "Search View",
|
|
"description": "Allows the user to search through the file tree.",
|
|
"extensions": {
|
|
"views": [
|
|
{
|
|
"key": "search",
|
|
"name": "Search",
|
|
"glyph": "5",
|
|
"description": "Search functionality.",
|
|
"templateUrl": "templates/search.html"
|
|
}
|
|
],
|
|
"controllers": [
|
|
{
|
|
"key": "SearchController",
|
|
"implementation": "SearchController.js",
|
|
"depends": [ "$scope", "objectService" ]
|
|
}
|
|
],
|
|
"representations": [
|
|
{
|
|
"key": "search-item",
|
|
"templateUrl": "templates/search-item.html",
|
|
"uses": [ "type", "action", "composition" ],
|
|
"gestures": [ "info", "menu" ]
|
|
}
|
|
]
|
|
}
|
|
} |