Skip to content

Instantly share code, notes, and snippets.

@arutnik
Created July 8, 2018 20:09
Show Gist options
  • Save arutnik/3dd73db67ad693bc37966972aaf0f914 to your computer and use it in GitHub Desktop.
Save arutnik/3dd73db67ad693bc37966972aaf0f914 to your computer and use it in GitHub Desktop.
SEO-SPA: Browser DI Service
import { ElementFocusService } from './element-focus.service';
import { Injectable, ElementRef } from '@angular/core';
@Injectable()
export class ElementFocusBrowserService extends ElementFocusService {
constructor() {
super();
}
public focusElement(element: ElementRef) {
element.nativeElement.focus();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment