-
Notifications
You must be signed in to change notification settings - Fork 164
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ensured that 'portrait' is not the only orientation on Chrome for Android in manifest.json #37
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,9 @@ | |
"silhouette": false, | ||
"version": 1.0, | ||
"config": null, | ||
"logging": false | ||
"logging": false, | ||
"androidOrientation": null, | ||
"androidDisplay": null | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Default should be "standalone" |
||
}, | ||
"favicon_generation": null | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,9 @@ To keep things organised, the configuration object contains 4 sub-objects: `file | |
index: null, // Path for the initial page on the site. `string` | ||
url: null, // URL for your website. `string` | ||
silhouette: false, // Turn the logo into a white silhouette for Windows 8. `boolean` | ||
logging: false // Print logs to console? `boolean` | ||
logging: false, // Print logs to console? `boolean` | ||
androidOrientation: null, // Sets the orientation in manifest.json for Android Chrome `string` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Again, default should be "portrait" |
||
androidDisplay: null // Sets the display value in manifest.json for Android Chrome `string` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Again, default should be "standalone" |
||
}, | ||
favicon_generation: null, // Complete JSON overwrite for the favicon_generation object. `object` | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Default should be "portrait"