|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
628 bytes
|
| Rev | Line | |
|---|
| [9af201e] | 1 | 'use strict';
|
|---|
| 2 |
|
|---|
| 3 | const main = {
|
|---|
| 4 | arrowUp: '↑',
|
|---|
| 5 | arrowDown: '↓',
|
|---|
| 6 | arrowLeft: '←',
|
|---|
| 7 | arrowRight: '→',
|
|---|
| 8 | radioOn: '◉',
|
|---|
| 9 | radioOff: '◯',
|
|---|
| 10 | tick: '✔',
|
|---|
| 11 | cross: '✖',
|
|---|
| 12 | ellipsis: '…',
|
|---|
| 13 | pointerSmall: '›',
|
|---|
| 14 | line: '─',
|
|---|
| 15 | pointer: '❯'
|
|---|
| 16 | };
|
|---|
| 17 | const win = {
|
|---|
| 18 | arrowUp: main.arrowUp,
|
|---|
| 19 | arrowDown: main.arrowDown,
|
|---|
| 20 | arrowLeft: main.arrowLeft,
|
|---|
| 21 | arrowRight: main.arrowRight,
|
|---|
| 22 | radioOn: '(*)',
|
|---|
| 23 | radioOff: '( )',
|
|---|
| 24 | tick: '√',
|
|---|
| 25 | cross: '×',
|
|---|
| 26 | ellipsis: '...',
|
|---|
| 27 | pointerSmall: '»',
|
|---|
| 28 | line: '─',
|
|---|
| 29 | pointer: '>'
|
|---|
| 30 | };
|
|---|
| 31 | const figures = process.platform === 'win32' ? win : main;
|
|---|
| 32 |
|
|---|
| 33 | module.exports = figures;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.