mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
20 lines
499 B
TypeScript
20 lines
499 B
TypeScript
|
///<reference path="../../../../../browser.d.ts"/>
|
||
|
|
||
|
import {Component} from "@angular/core";
|
||
|
|
||
|
@Component({
|
||
|
selector: 'gallery-grid-photo-loading',
|
||
|
templateUrl: 'app/gallery/grid/photo/loading/loading.photo.grid.gallery.component.html',
|
||
|
styleUrls: ['app/gallery/grid/photo/loading/loading.photo.grid.gallery.component.css'],
|
||
|
})
|
||
|
export class GalleryPhotoLoadingComponent {
|
||
|
|
||
|
animate = false;
|
||
|
|
||
|
startAnimation() {
|
||
|
console.log("animate");
|
||
|
this.animate = true;
|
||
|
}
|
||
|
}
|
||
|
|