blob: 5cff2d13696d8282199512baa3bdd39dce110dcf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import logger from './logger';
const controls = {
hide: function() {
logger.debug('hide():', 'Hiding controls');
const controls_el = document.querySelector(
'.PlayerControlsNeo__layout.PlayerControlsNeo__layout--active'
);
logger.debug('hide():', 'Controls:', controls_el);
controls_el
.classList
.replace(
'PlayerControlsNeo__layout--active',
'PlayerControlsNeo__layout--inactive'
);
}
};
export default controls;
|