Skip to content

Commit

Permalink
Merge pull request #2 from ArminZol/master
Browse files Browse the repository at this point in the history
Fix issue with initial screen on mobile
  • Loading branch information
ArminZol authored Jul 11, 2018
2 parents 1addefc + 35deb57 commit 534376b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 89 deletions.
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
Apache Cordova Team
</author>
<content src="index.html" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<access origin="*" />
<allow-intent href="*" />
<allow-intent href="https://*/*" />
Expand All @@ -23,5 +22,6 @@
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<plugin name="cordova-plugin-whitelist" spec="1" />
<engine name="android" spec="^7.0.0" />
</widget>
88 changes: 2 additions & 86 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@
"gulp-filter": "^5.1.0",
"gulp-htmlmin": "^4.0.0",
"gulp-inject": "^4.3.2",
"gulp-inline-ng2-template": "^5.0.0",
"gulp-load-plugins": "^1.5.0",
"gulp-plumber": "~1.2.0",
"gulp-postcss": "^7.0.1",
Expand Down
3 changes: 2 additions & 1 deletion src/client/app/home/home-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import { HomeComponent } from './home.component';
@NgModule({
imports: [
RouterModule.forChild([
{ path: '', component: HomeComponent }
{ path: '', component: HomeComponent },
{ path: '**', redirectTo: '/' }
])
],
exports: [RouterModule]
Expand Down

0 comments on commit 534376b

Please sign in to comment.