-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fixed Cursor style when hovering over menu buttons
- Added Third Party Licenses Page - Incremented Version to 1.1.0
- Loading branch information
1 parent
1a52f6b
commit 05a13d2
Showing
13 changed files
with
606 additions
and
30 deletions.
There are no files selected for viewing
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
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
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,26 +1,32 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { PreloadAllModules, RouterModule, Routes } from '@angular/router'; | ||
|
||
const routes: Routes = [ | ||
{ | ||
path: 'home', | ||
loadChildren: () => import('./home/home.module').then( m => m.HomePageModule) | ||
}, | ||
{ | ||
path: '', | ||
redirectTo: 'home', | ||
pathMatch: 'full' | ||
}, { | ||
import { NgModule } from '@angular/core'; | ||
import { PreloadAllModules, RouterModule, Routes } from '@angular/router'; | ||
|
||
const routes: Routes = [ | ||
{ | ||
path: 'home', | ||
loadChildren: () => import('./home/home.module').then( m => m.HomePageModule) | ||
}, | ||
{ | ||
path: '', | ||
redirectTo: 'home', | ||
pathMatch: 'full' | ||
}, | ||
{ | ||
path: 'about', | ||
loadChildren: () => import('./about/about.module').then( m => m.AboutPageModule) | ||
redirectTo: 'home', | ||
pathMatch: 'full' | ||
}, | ||
{ | ||
path: 'licenses', | ||
redirectTo: 'home', | ||
pathMatch: 'full' | ||
}, | ||
]; | ||
|
||
]; | ||
|
||
@NgModule({ | ||
imports: [ | ||
RouterModule.forRoot(routes, { preloadingStrategy: PreloadAllModules }) | ||
], | ||
exports: [RouterModule] | ||
}) | ||
export class AppRoutingModule { } | ||
@NgModule({ | ||
imports: [ | ||
RouterModule.forRoot(routes, { preloadingStrategy: PreloadAllModules }) | ||
], | ||
exports: [RouterModule] | ||
}) | ||
export class AppRoutingModule { } |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { Routes, RouterModule } from '@angular/router'; | ||
|
||
import { LicensesPage } from './licenses.page'; | ||
|
||
const routes: Routes = [ | ||
{ | ||
path: '', | ||
component: LicensesPage | ||
} | ||
]; | ||
|
||
@NgModule({ | ||
imports: [RouterModule.forChild(routes)], | ||
exports: [RouterModule], | ||
}) | ||
export class LicensesPageRoutingModule {} |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { FormsModule } from '@angular/forms'; | ||
|
||
import { IonicModule } from '@ionic/angular'; | ||
|
||
import { LicensesPageRoutingModule } from './licenses-routing.module'; | ||
|
||
import { LicensesPage } from './licenses.page'; | ||
|
||
@NgModule({ | ||
imports: [ | ||
CommonModule, | ||
FormsModule, | ||
IonicModule, | ||
LicensesPageRoutingModule | ||
], | ||
declarations: [LicensesPage] | ||
}) | ||
export class LicensesPageModule {} |
Oops, something went wrong.