- commit
- 9028511d2c68fdfee1e5bf76a209e9c56a685d15
- parent
- df7e0318de666f96d1241f79edcf173fa2bc9f74
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2019-11-01 17:31
reword "Quit" to "Back"
Diffstat
| M | src/template.js | 4 | ++-- |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/template.js b/src/template.js
@@ -43,7 +43,7 @@ const renderControls = function(state) {
43 43 ' ',
44 44 h('button', {'class': 'js-export'}, 'Export'),
45 45 ' ',
46 -1 h('button', {'class': 'js-quit'}, 'Quit'),
-1 46 h('button', {'class': 'js-quit'}, 'Back'),
47 47 ]);
48 48 } else {
49 49 return h('div', {'class': 'board-controls'}, [
@@ -61,7 +61,7 @@ const renderControls = function(state) {
61 61 ' ',
62 62 h('button', {'class': 'js-reset'}, 'Reset'),
63 63 ' ',
64 -1 h('button', {'class': 'js-quit'}, 'Quit'),
-1 64 h('button', {'class': 'js-quit'}, 'Back'),
65 65 ]);
66 66 }
67 67 };