Skip to content

Commit 8a54c4f

Browse files
committed
up
1 parent 00b0bf2 commit 8a54c4f

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

src/app/app.module.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { HttpClientModule, HttpClient } from '@angular/common/http';
44
import { BrowserModule } from '@angular/platform-browser';
55
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
66
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
7-
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
87
import { AppComponent } from './app.component';
98
import { AppRoutingModule } from './app-routing.module';
109
import { PublicModule } from './public/public.module';
@@ -21,16 +20,14 @@ import { StorageService } from './Providers/storageservice';
2120
BrowserModule,
2221
BrowserAnimationsModule,
2322
HttpClientModule,
24-
FormsModule,
25-
ReactiveFormsModule,
2623
AppRoutingModule,
2724
PublicModule,
2825
PrivateModule,
2926
ToastrModule.forRoot(),
3027
],
3128
exports: [
3229
ToastrModule,
33-
FormsModule
30+
AppRoutingModule
3431
],
3532
providers: [
3633
HttpClient,

src/app/private/private.module.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,18 @@ import { GalleryComponent } from './gallery/gallery.component';
1414
import { EmbedVideo } from 'ngx-embed-video';
1515
import { DemoChartsComponent } from './demo-charts/demo-charts.component';
1616
import { HttpModule } from '@angular/http';
17+
import { ReactiveFormsModule } from '@angular/forms';
1718

1819
@NgModule({
1920
imports: [
2021
CommonModule,
22+
AppRoutingModule,
23+
ReactiveFormsModule,
2124
DataTableModule,
2225
TableModule,
2326
HttpModule,
2427
EmbedVideo.forRoot(),
2528
SharedModule,
26-
AppRoutingModule,
2729
ChartModule
2830
],
2931
declarations: [

src/app/public/public.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ import { PublicSigninComponent } from './signin/signin.component';
88
import { PublicComponent } from './public.component';
99
import { AppRoutingModule } from '../app-routing.module';
1010

11+
1112
@NgModule({
1213
imports: [
1314
CommonModule,
1415
AppRoutingModule,
1516
ReactiveFormsModule
16-
1717
],
1818
declarations: [
1919
PublicHeaderComponent,

src/app/shared/gallery-popup/gallery-popup.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ <h4 class="modal-title pull-left">Gallery</h4>
1414
</div> -->
1515
<carousel>
1616
<slide>
17-
<img src="assets/images/1.png" alt="first slide" style="display: block; width: 100%;">
17+
<img src="assets/images/1.jpg" alt="first slide" style="display: block; width: 100%;">
1818
</slide>
1919
<slide>
2020
<img src="assets/images/2.jpg" alt="second slide" style="display: block; width: 100%;">
2121
</slide>
2222
<slide>
23-
<img src="assets/images/3.png" alt="third slide" style="display: block; width: 100%;">
23+
<img src="assets/images/3.jpg" alt="third slide" style="display: block; width: 100%;">
2424
</slide>
2525
</carousel>
2626
</div>

0 commit comments

Comments
 (0)