Skip to content

Commit

Permalink
More naming updates
Browse files Browse the repository at this point in the history
  • Loading branch information
hmitsch committed Apr 11, 2019
1 parent 8827396 commit 776b910
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion public/error.html
Expand Up @@ -10,7 +10,7 @@
rel="stylesheet"
/>
<link href="/css/app.css" rel="stylesheet" />
<title>Mozilla Directory</title>
<title>Mozilla People Directory</title>
</head>
<body>
<div id="app" class="app-container">
Expand Down
6 changes: 3 additions & 3 deletions public/index.html
Expand Up @@ -10,17 +10,17 @@
rel="stylesheet"
/>
<link
title="Mozilla Directory Search"
title="Mozilla People Directory Search"
rel="search"
type="application/opensearchdescription+xml"
href="<%= BASE_URL %>opensearch.xml"
/>
<title>Mozilla Directory</title>
<title>Mozilla People Directory</title>
</head>
<body>
<noscript>
<strong
>We're sorry but the Mozilla Directory doesn't work properly without
>We're sorry but the Mozilla People Directory doesn't work properly without
JavaScript enabled. Please enable it to continue.</strong
>
</noscript>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/PageHome.vue
Expand Up @@ -5,7 +5,7 @@
src="@/assets/images/laptop-phone.jpg"
srcset="@/assets/images/laptop-phone@2x.jpg 2x"
/>
<h1>Welcome to the Mozilla Directory</h1>
<h1>Welcome to the Mozilla People Directory</h1>
<p>
A secure place to quickly find your team members and easily discover new
ones, now in beta.
Expand Down Expand Up @@ -33,7 +33,7 @@
</h2>
<p>
Join us on Discourse and let us know how we can make the Mozilla
Directory even better.
People Directory even better.
</p>
</Card>
<Card>
Expand Down
10 changes: 5 additions & 5 deletions src/router.js
Expand Up @@ -65,19 +65,19 @@ const router = new Router({
router.beforeEach((to, from, next) => {
switch (to.name) {
case 'OrgchartHighlight':
document.title = `${to.params.username} - Org chart - Mozilla Directory`;
document.title = `${to.params.username} - Org chart - Mozilla People Directory`;
break;
case 'Orgchart':
document.title = 'Org chart - Mozilla Directory';
document.title = 'Org chart - Mozilla People Directory';
break;
case 'Profile':
document.title = `${to.params.username} - Profile - Mozilla Directory`;
document.title = `${to.params.username} - Profile - Mozilla People Directory`;
break;
case 'Edit Profile':
document.title = `Edit - Profile - Mozilla Directory`;
document.title = `Edit - Profile - Mozilla People Directory`;
break;
default:
document.title = `${to.name} - Mozilla Directory`;
document.title = `${to.name} - Mozilla People Directory`;
}
next();
});
Expand Down

0 comments on commit 776b910

Please sign in to comment.