-
Notifications
You must be signed in to change notification settings - Fork 19
1165-incompatible-browser-validation-and-warning #1348
Conversation
@briandavidson - Hey Brian, just a heads up. I sent you a message detailing multiple questions and problems I'm having with the current PRs en queue. Gratsi sir! |
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.
Along with the changes requested in the other comments, please revert the changes to server/package.json
and omit both server/package-lock.json
and frontend/package-lock.json
from the PR -- those shouldn't be necessary for addressing the issue.
@briandavidson @mtlaney - Hey Mike and Brian, this PR should be good for a final review. |
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.
Code looks good. I tested on safari and chrome and it is working as expected. Also tested mobile responsiveness and it looks good there too. Nice work Dylan
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.
💥 💥 💥
g2g!
switch (parsedBrowserInfo[1]) { | ||
case 'OPR': { | ||
this.browserName = 'Opera'; | ||
break; | ||
} | ||
case 'Edge': { | ||
this.browserName = 'Edge'; | ||
break; | ||
} | ||
default: { | ||
this.browserName = 'notChrome'; | ||
break; | ||
} | ||
} |
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.
This switch
is much cleaner, nice work here @Dmac26!
Summary
Addresses Issue # 1165
This PR is an updated version of the original 1165 PR, which needed several styling updates to account for mobile views and to clean up some syntax. I was unable to directly update the original PR as I did not manage my work flow properly and my branch was significantly behind the dev branch.
This pull request is ready to merge when...