shale 32eaf3893a [Search] Display search items
The search view now very rudimentarily displays
some 'search-item's.
2015-07-08 16:20:12 -07:00

30 lines
858 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" ]
}
],
"representations": [
{
"key": "search-item",
"templateUrl": "templates/search-item.html",
"uses": [ "type", "action" ],
"gestures": [ "info", "menu" ]
}
]
}
}