-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee0d3f2
commit f4419b0
Showing
3 changed files
with
37 additions
and
0 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
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,28 @@ | ||
const isAlertsPage = () => { | ||
const url = window.location.href; | ||
|
||
return /\/alerts\/(\w)+/.test(url); | ||
}; | ||
|
||
const isIPhone = () => { | ||
return /iPhone/.test(navigator.userAgent); | ||
}; | ||
|
||
const isSchedulePage = () => { | ||
const url = window.location.href; | ||
|
||
return /\/schedules\/(\w)+\/line/.test(url); | ||
}; | ||
|
||
const isStopPage = () => { | ||
const url = window.location.href; | ||
|
||
return /\/stops\/(\w)+/.test(url); | ||
}; | ||
|
||
// Show the mobile app banner | ||
export default function mobileAppBanner() { | ||
if (isIPhone() && (isAlertsPage() || isSchedulePage() || isStopPage())) { | ||
document.querySelector("#mobile-app-banner").style.display = "block"; | ||
} | ||
} |
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