mirror of
https://github.com/nasa/openmct.git
synced 2025-06-16 14:18:16 +00:00
[Search] Search menu
Creating a search menu which will allow for more specific search options. So far have started top-down with styling. In progress.
This commit is contained in:
@ -124,8 +124,17 @@ define(function () {
|
||||
* Clears the input text.
|
||||
*/
|
||||
clear: function () {
|
||||
// Clear input field
|
||||
$scope.ngModel.input = '';
|
||||
$scope.ngModel.search = false;
|
||||
// Call search to clear the results list too
|
||||
search();
|
||||
},
|
||||
|
||||
/**
|
||||
* Opens a menu for more search options.
|
||||
*/
|
||||
menu: function () {
|
||||
console.log('open menu');
|
||||
}
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user