mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 14:32:22 +00:00
5870248617
Created a basic framework for a search view. It consists of a search bar and a results list.
22 lines
598 B
JSON
22 lines
598 B
JSON
{
|
|
"name": "Search View",
|
|
"description": "Allows the user to search through the file three.",
|
|
"extensions": {
|
|
"views": [
|
|
{
|
|
"key": "search",
|
|
"name": "Search",
|
|
"glyph": "5",
|
|
"description": "Search functionality.",
|
|
"templateUrl": "templates/search.html"
|
|
}
|
|
],
|
|
"controllers": [
|
|
{
|
|
"key": "SearchController",
|
|
"implementation": "SearchController.js",
|
|
"depends": [ "$scope" ]
|
|
}
|
|
]
|
|
}
|
|
} |