Rename method

Method scope widened in #1354. Changing its name here to
avoid merge conflicts later.
This commit is contained in:
hunicus 2022-03-12 16:07:45 -05:00
parent b71df774f5
commit 142566f4f9
No known key found for this signature in database
GPG Key ID: 24837C51B6D81FD9
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
<div id="restAPI" *ngIf="restTabActivated"> <div id="restAPI" *ngIf="restTabActivated">
<div id="doc-nav-desktop" class="hide-on-mobile" [ngClass]="desktopDocsNavPosition"> <div id="doc-nav-desktop" class="hide-on-mobile" [ngClass]="desktopDocsNavPosition">
<app-api-docs-nav (navLinkClickEvent)="scrollSameId( $event )" [network]="{ val: network$ | async }"></app-api-docs-nav> <app-api-docs-nav (navLinkClickEvent)="anchorLinkClick( $event )" [network]="{ val: network$ | async }"></app-api-docs-nav>
</div> </div>
<div class="doc-content"> <div class="doc-content">
@ -26,7 +26,7 @@
<div *ngFor="let item of restDocs"> <div *ngFor="let item of restDocs">
<div *ngIf="( item.type !== 'category' ) && ( item.showConditions.indexOf(network.val) > -1 )" class="endpoint-container" id="{{ item.fragment }}"> <div *ngIf="( item.type !== 'category' ) && ( item.showConditions.indexOf(network.val) > -1 )" class="endpoint-container" id="{{ item.fragment }}">
<a class="section-header" (click)="scrollSameId( $event )" [routerLink]="['./']" fragment="{{ item.fragment }}">{{ item.title }} <span>{{ item.category }}</span></a> <a class="section-header" (click)="anchorLinkClick( $event )" [routerLink]="['./']" fragment="{{ item.fragment }}">{{ item.title }} <span>{{ item.category }}</span></a>
<div class="endpoint"> <div class="endpoint">
<div class="subtitle" i18n="Api docs endpoint">Endpoint</div> <div class="subtitle" i18n="Api docs endpoint">Endpoint</div>
<ng-container *ngIf="item.httpRequestMethod === 'GET' && network.val === 'bisq' && item.codeExample.hasOwnProperty('bisq');else liquid_link_example" #bisq_link_example> <ng-container *ngIf="item.httpRequestMethod === 'GET' && network.val === 'bisq' && item.codeExample.hasOwnProperty('bisq');else liquid_link_example" #bisq_link_example>

View File

@ -72,7 +72,7 @@ export class ApiDocsComponent implements OnInit {
}); });
} }
scrollSameId( event: any ) { anchorLinkClick( event: any ) {
const targetId = event.target.hash.substring(1); const targetId = event.target.hash.substring(1);
if( this.route.snapshot.fragment === targetId ) { if( this.route.snapshot.fragment === targetId ) {
document.getElementById( targetId ).scrollIntoView(); document.getElementById( targetId ).scrollIntoView();