Skip to content

Commit

Permalink
Rename "Colour deficiency simulation" to "Colour blindness simulation"
Browse files Browse the repository at this point in the history
"Colour blindness" is the most commonly used term. The correct medical term in full would be "Colour vision deficiency", but that would make the menu item a bit long, and most people would still not know right away that it's the thing commonly referred to as "colour blindness"
https://www.nhs.uk/conditions/colour-vision-deficiency/
  • Loading branch information
patrickhlauke committed Oct 1, 2018
1 parent 5ea4bc6 commit a1d2285
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ app.on('ready', () => {
label: 'View',
submenu: [
{
label: 'Colour deficiency simulation',
label: 'Colour blindness simulation',
click: () => deficiency.init()
},/*
{
Expand Down
4 changes: 2 additions & 2 deletions src/views/deficiency.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<html>
<head>
<meta charset="utf-8">
<title>Colour deficiency simulation</title>
<title>Colour blindness simulation</title>
<link rel="stylesheet" href="css/global.css" />
<link rel="stylesheet" href="css/deficiency.css" />
<script defer src="js/deficiency.js"></script>
</head>
<body>
<main>
<h1 class="sr-only">Colour deficiency simulation</h1>
<h1 class="sr-only">Colour blindness simulation</h1>
<h2>Monochromacy</h2>
<div class="row">
<div class="deficiency" id="deficiency-achromatopsia">
Expand Down

0 comments on commit a1d2285

Please sign in to comment.