This repository has been archived by the owner on Jan 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement virtual slides on photo page. Close #59.
- Loading branch information
1 parent
6aa994a
commit 2c887b5
Showing
8 changed files
with
215 additions
and
122 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { NgxIonicImageViewerModule } from 'ngx-ionic-image-viewer'; | ||
import { SwiperModule } from 'swiper/angular'; | ||
import { SharedModule } from '../../../shared/shared.module'; | ||
import { PhotoPageRoutingModule } from './photo-routing.module'; | ||
import { PhotoPage } from './photo.page'; | ||
|
||
@NgModule({ | ||
imports: [SharedModule, PhotoPageRoutingModule, NgxIonicImageViewerModule], | ||
imports: [ | ||
SharedModule, | ||
PhotoPageRoutingModule, | ||
NgxIonicImageViewerModule, | ||
SwiperModule, | ||
], | ||
declarations: [PhotoPage], | ||
}) | ||
export class PhotoPageModule {} |
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
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
Oops, something went wrong.