This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { AfterViewInit, Directive, ElementRef, Inject } from '@angular/core'; | |
import { AbstractSubscriber } from '../../core/abstract-subscriber'; | |
import { filter, startWith, takeUntil } from 'rxjs/operators'; | |
import { NavigationEnd, Router } from '@angular/router'; | |
import { APP_BASE_HREF, Location } from '@angular/common'; | |
function isSafariBrowser() { | |
return navigator.vendor && navigator.vendor.indexOf('Apple') > -1 && | |
navigator.userAgent && | |
navigator.userAgent.indexOf('CriOS') === -1 && |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:output indent="no" omit-xml-declaration="yes"/> | |
<xsl:strip-space elements="*"/> | |
<xsl:template match="@*|node()"> | |
<xsl:copy> | |
<xsl:apply-templates select="@*|node()"/> | |
</xsl:copy> | |
</xsl:template> | |
<xsl:template match="text()"> |
NewerOlder