This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit 94effc4d authored by Eduard Frankford's avatar Eduard Frankford
Browse files

added hover over and hover out for help

parent d432c758
2 merge requests!17Initial Merge to Prepare Release 1.0.0,!1Resolve "Metadaten konsolideren"
......@@ -3,8 +3,10 @@
<div style="width: 100%; margin-bottom: 20px;">
<button type="button"
class="btn btn-outline-secondary"
(click)="showSearchUsage = !showSearchUsage"
>{{ (showSearchUsage ? 'search.hideUsage' : 'search.showUsage') | translate}}</button>
(mouseover)= "showSearchUsage = true"
(mouseout)= "showSearchUsage = false"
><!-- <fa-icon [icon]="questionIcon"></fa-icon> -->
{{ (showSearchUsage ? 'search.hideUsage' : 'search.showUsage') | translate}}</button>
</div>
<span *ngIf="showSearchUsage" jhiTranslate="search.usage">The search mask allows you to search for full texts in the sharing platform based on various search criteria (e.g., full-text search, programming languages, keywords, etc.). Boolean operators can be used in the search mask for full texts. Apart from the full-text search, no further fields are to be specified.</span>&nbsp;
......@@ -55,3 +57,5 @@
</div>
</ng-container>
</div>
......@@ -4,6 +4,7 @@ import { ActivatedRoute, Router } from '@angular/router';
import { QueryParam, QueryParamBuilder, QueryParamGroup } from '@ngqp/core';
import { takeUntil } from 'rxjs/operators';
import { SearchInput } from 'app/shared/model/search/search-input.model';
import { faQuestion } from '@fortawesome/free-solid-svg-icons';
// import { SearchService } from 'app/search/service/search-service';
// import { SearchResultsDTO } from 'app/shared/model/search/search-results-dto.model';
......@@ -19,6 +20,7 @@ export class SearchInputComponent implements OnInit, OnDestroy {
@Output() searchInputEvent = new EventEmitter<SearchInput>();
public pageSize = 4;
questionIcon = faQuestion;
public paramGroup: QueryParamGroup;
private componentDestroyed$ = new Subject<void>();
......
......@@ -23,7 +23,7 @@
"collectionContent": "Samlungsinhalt",
"deprecated": "Veraltet",
"difficulty": "Schwierigkeit",
"educationLevel": "Bildungsnivequ",
"educationLevel": "Bildungsniveau",
"keywords": "Schlüsselwörter",
"format": "Format",
"status": "Status",
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment