Skip to content
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

Some spell fixies #5119

Merged
merged 2 commits into from
Sep 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The purpose of this guideline is to help the developer to contribute in the
best way to `ngeo` and `gmf` cores.
It describe the golbal philosophy of `ngeo` design, and set base rules to
It describe the global philosophy of `ngeo` design, and set base rules to
apply when you want to add a new feature.

You are free to read and fork this library. But you must know that we have currently no time to handle issues
Expand Down
2 changes: 1 addition & 1 deletion utils/ios-overlap-fix.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(function() {
// Hack for ios Safari browser (UI overlapping on iOS 10)
var userAgent = window.navigator.userAgent;
var regEx = /iP(hone|od|ad)/;
var regEx = /(iPhone|iPod|iPad)/;
var iOS = regEx.test(userAgent);
var webkit = /WebKit/i.test(userAgent);
var chromeiOS = /(Chrome|CriOS|OPiOS)/i.test(userAgent);
Expand Down