Skip to content

Commit

Permalink
Updates to route rules for browser warning message and also to copy
Browse files Browse the repository at this point in the history
  • Loading branch information
GordyD committed Apr 22, 2016
1 parent 74aa28e commit 47ab893
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/pages/browserwarning/browserwarning.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var BrowserWarning = React.createClass({
return (
<div className="browser-warning js-terms">
<div className="browser-warning-content browser-warning-box">
<h1 className="browser-warning-title">Blip is only certified to work on Chrome browser.</h1>
<h1 className="browser-warning-title">Blip's visualization is only certified to work on Chrome browser.</h1>
<a href="https://www.google.com/intl/en/chrome/browser/desktop/index.html">
<div className="browser-warning-chrome-image"></div>
</a>
Expand Down
8 changes: 4 additions & 4 deletions app/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,10 +262,10 @@ export const getRoutes = (appContext, store) => {
<Route path='signup' component={Signup} onEnter={requireNoAuth(api)} />
<Route path='email-verification' component={EmailVerification} onEnter={requireNotVerified(api, store)} />
<Route path='profile' component={UserProfile} onEnter={requireAuth(api, store)} />
<Route path='patients' component={Patients} onEnter={requiresChrome(utils, requireAuth(api, store))} />
<Route path='patients/new' component={PatientNew} onEnter={requiresChrome(utils, requireAuthAndNoPatient(api, store))} />
<Route path='patients/:id/profile' component={PatientProfile} onEnter={requiresChrome(utils, requireAuth(api, store))} />
<Route path='patients/:id/share' component={Share} onEnter={requiresChrome(utils, requireAuth(api, store))} />
<Route path='patients' component={Patients} onEnter={requireAuth(api, store)} />
<Route path='patients/new' component={PatientNew} onEnter={requireAuthAndNoPatient(api, store)} />
<Route path='patients/:id/profile' component={PatientProfile} onEnter={requireAuth(api, store)} />
<Route path='patients/:id/share' component={Share} onEnter={requireAuth(api, store)} />
<Route path='patients/:id/data' component={PatientData} onEnter={requiresChrome(utils, requireAuth(api, store))} />
<Route path='request-password-reset' component={RequestPasswordReset} onEnter={requireNoAuth(api)} />
<Route path='confirm-password-reset' component={ConfirmPasswordReset} onEnter={requireNoAuth(api)} />
Expand Down

0 comments on commit 47ab893

Please sign in to comment.