diff options
author | Camil Staps | 2020-01-03 19:56:38 +0100 |
---|---|---|
committer | Camil Staps | 2020-01-03 19:56:38 +0100 |
commit | 99624cdbde31c9d631d0317d767db35e15c502ef (patch) | |
tree | 550759c674388968bda3f6b67769692f489ad1c9 /public | |
parent | Use Act, Med, Pass, and Med-pass as abbreviations for voice (diff) |
Various minor improvements
Diffstat (limited to 'public')
-rw-r--r-- | public/css/luoparsetrainer.css | 5 | ||||
-rw-r--r-- | public/js/luoparsetrainer.js | 4 |
2 files changed, 3 insertions, 6 deletions
diff --git a/public/css/luoparsetrainer.css b/public/css/luoparsetrainer.css index e3af912..d9fddaa 100644 --- a/public/css/luoparsetrainer.css +++ b/public/css/luoparsetrainer.css @@ -21,6 +21,7 @@ } body { + font-family: 'SBL Greek', 'Palatino Linotype'; padding-top: 20px; } @@ -68,10 +69,6 @@ body { display: none; } -.greek { - font-family: 'SBL Greek', 'Palatino Linotype'; -} - .greek-large { font-size: 40px; } diff --git a/public/js/luoparsetrainer.js b/public/js/luoparsetrainer.js index 3d709ac..5c04ae6 100644 --- a/public/js/luoparsetrainer.js +++ b/public/js/luoparsetrainer.js @@ -77,8 +77,8 @@ $(document).ready(function(){ 'F dat ev': 'F dat ev', 'N dat ev': 'N dat ev', 'M acc ev': 'M acc ev', - 'N acc ev': 'N acc ev', 'F acc ev': 'F acc ev', + 'N acc ev': 'N acc ev', 'M nom mv': 'M nom mv', 'F nom mv': 'F nom mv', 'N nom mv': 'N nom mv', @@ -432,7 +432,7 @@ $(document).ready(function(){ $('#show-hide-help').click(function(){ help_shown = !help_shown; $('#trainer-input-help').slideToggle(); - $(this).text((help_shown ? 'Hide' : 'Show') + ' help'); + $(this).text(help_shown ? 'Verberg' : 'Meer informatie'); $('#trainer-input-'+input_count).focus(); }); |