-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1_dom_selectors.js
More file actions
39 lines (26 loc) · 1003 Bytes
/
1_dom_selectors.js
File metadata and controls
39 lines (26 loc) · 1003 Bytes
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
35
36
37
38
const DEFAULT_TIMES = {
c_1: 300000,
c_2: 300000
}
const CLOCK_1_SELECTOR = '#clock-1';
const CLOCK_2_SELECTOR = '#clock-2';
const PLAY_PAUSE_SELECTOR = '.play-pause-button';
const VOLUME_SELECTOR = '.volume-button';
const SETTINGS_SELECTOR = '.settings-button';
const POP_UP = '.pop-up-interface';
const INFO_TEXT = '.info-text';
const COVER_BACKDROP = '.cover-backdrop';
const BTN_UPDATE_TIMERS = '.btn-update-timers';
const BTN_RESET_DEFAULT = '.btn-reset-default';
const BTN_CLOSE_POP_UP = '.btn-close-pop-up';
const DIFF_TIMERS_TOGGLE = '.different-timers-toggle';
// const DIFF_INCRE_TOGGLE = '.different-increments-toggle';
const C1_MINS = '#c-1-minutes';
const C1_SECONDS = '#c-1-seconds';
const C1_INCRE = '#c-1-increment';
const C2_MINS = '#c-2-minutes';
const C2_SECONDS = '#c-2-seconds';
const C2_INCRE = '#c-2-increment';
const WHITE_CLOCK = '.white-clock';
const BTN_TOGGLE_SECOND_TIMER = '.different-timers-toggle';
const SECOND_TIMER = '.timer-interface.secondary';