-
Notifications
You must be signed in to change notification settings - Fork 34
/
constants.js
34 lines (32 loc) · 846 Bytes
/
constants.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
const MODULE_NOTIFICATIONS = {
close: 'MMM-Screencast:CLOSE',
stop_app: 'MMM-Screencast:STOP-APP',
start_dial: 'MMM-Screencast:START-DIAL',
run_app: 'MMM-Screencast:RUN-APP',
launch_app: 'MMM-Screencast:LAUNCH-APP',
config_error: 'MMM-Screencast:CONFIG-ERROR'
};
const POSITIONS = {
bottomRight: 'bottomRight',
bottomCenter: 'bottomCenter',
bottomLeft: 'bottomLeft',
center: 'center',
topRight: 'topRight',
topCenter: 'topCenter',
topLeft: 'topLeft',
top_bar: 'topRight',
top_left: 'topLeft',
top_center: 'topCenter',
top_right: 'topRight',
upper_third: 'topRight',
middle_center: 'center',
lower_third: 'bottomCenter',
bottom_left: 'bottomLeft',
bottom_center: 'bottomCenter',
bottom_right: 'bottomRight',
bottom_bar: 'bottomCenter'
};
module.exports = {
MODULE_NOTIFICATIONS,
POSITIONS
};