openmct/platform/features/search/bundle.json
shale 94b306e129 [Search] Listify filetree
SearchController now attempts to convert the filetree
into a list format. Still needs to be modified to be
asynchronous.
2015-07-09 11:16:55 -07:00

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" ]
}
]
}
}