Fixed animations

This commit is contained in:
ztimson
2019-07-22 13:32:41 -04:00
parent 62dd88989b
commit 8a9d759c41
2 changed files with 20 additions and 23 deletions

View File

@ -10,14 +10,11 @@ import {flyInRight, flyOutRight} from "../../animations";
declare const google;
const flyInRightFast = flyInRight('150ms');
const flyOutRightFast = flyOutRight('150ms');
@Component({
selector: 'map',
templateUrl: 'map.component.html',
styleUrls: ['map.component.scss'],
animations: [flyInRightFast, flyOutRightFast]
animations: [flyInRight, flyOutRight]
})
export class MapComponent {
drawColor: string;