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 { ActivatedRoute, NavigationEnd, Router, RouterEvent, RouterLinkWithHref, UrlTree } from '@angular/router'; | |
import { | |
Directive, | |
EventEmitter, | |
HostBinding, | |
HostListener, | |
Input, | |
isDevMode, | |
OnChanges, | |
OnDestroy, |
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
background: linear-gradient(180deg, #fbd3e9, #bb377d, #00c9ff, #92fe9d); | |
background-size: 800% 800%; | |
-webkit-animation: mellow-bg 59s ease infinite; | |
-moz-animation: mellow-bg 59s ease infinite; | |
-o-animation: mellow-bg 59s ease infinite; | |
animation: mellow-bg 59s ease infinite; | |
@-webkit-keyframes mellow-bg { | |
0%{background-position:50% 0%} |
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
/** | |
* Wrapper for {@link AccountManager} with improved functionality and RxJava support. | |
* | |
* Originally found from <a href="https://github.com/novoda/spikes/tree/master/gertherb/android/src/main/java/com/gertherb/authentication">github.com/spikes/gertherb</a>, | |
* and modified to work with a newer RxJava version, using {@link Single} instead of {@link rx.Observable}. | |
* | |
* @author Ataul Munim | |
* @author Santeri Elo | |
*/ | |
public class BetterAccountManager { |
NewerOlder