diff options
Diffstat (limited to 'ui/imports/ui/components/search-auto-complete-list/search-auto-complete-list.html')
-rw-r--r-- | ui/imports/ui/components/search-auto-complete-list/search-auto-complete-list.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/ui/imports/ui/components/search-auto-complete-list/search-auto-complete-list.html b/ui/imports/ui/components/search-auto-complete-list/search-auto-complete-list.html new file mode 100644 index 0000000..bd5e0e2 --- /dev/null +++ b/ui/imports/ui/components/search-auto-complete-list/search-auto-complete-list.html @@ -0,0 +1,22 @@ +<!-- +######################################################################################## +# Copyright (c) 2017 Koren Lev (Cisco Systems), Yaron Yogev (Cisco Systems) and others # +# # +# All rights reserved. This program and the accompanying materials # +# are made available under the terms of the Apache License, Version 2.0 # +# which accompanies this distribution, and is available at # +# http://www.apache.org/licenses/LICENSE-2.0 # +######################################################################################## + --> +<template name="SearchAutoCompleteList"> +<div class="os-search-auto-complete-list"> + {{#if isOpen}} + <div class="sm-backdrop"></div> + {{/if }} + <ul class="sm-search-auto-complete-list {{#if isOpen }}cl-open{{/if}}"> + {{#each resultItem in searchResults }} + {{>AutoSearchResultLine (createAutoSearchResultLineArgs resultItem) }} + {{/each }} + </ul> +</div> +</template> |