Skip to content

Commit

Permalink
Autofocus sequence location search box
Browse files Browse the repository at this point in the history
Refs #2266
  • Loading branch information
kimrutherford committed Nov 3, 2024
1 parent 4ac1673 commit 5f5c5ca
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -192,12 +192,12 @@
{{selectedResidueMessage()}}
</div>
<div *ngIf="!selectedResidueRange">&nbsp;</div>

<div *ngIf="!showNucSequence && !deployConfigService.productionMode()" class="manual-selection">
<a *ngIf="!selectedResidueRange && !manualSelectionVisible" (click)="manualSelectionVisible=true;">Manually select residues</a>
<div *ngIf="manualSelectionVisible && !selectedResidueRange">
Select range: <input [(ngModel)]="manualSelection" (change)="manualSelectionChanged()"
placeholder="Examples: 10..25 or 15-30 or 40">
placeholder="Examples: 10..25 or 15-30 or 40" autofocus>
<span class="manual-selection-error" *ngIf="manualSelectionErrorMessage">error: {{manualSelectionErrorMessage}}</span>
</div>
</div>
Expand Down

0 comments on commit 5f5c5ca

Please sign in to comment.