2018-10-09 11:43:51 +02:00
|
|
|
import { show, hide } from '@utils';
|
2018-08-09 11:53:59 +02:00
|
|
|
|
2018-09-13 17:13:09 +02:00
|
|
|
export function showMotivation(event, state) {
|
|
|
|
event.preventDefault();
|
2018-10-09 11:43:51 +02:00
|
|
|
show(document.querySelector(`.motivation.${state}`));
|
|
|
|
hide(document.querySelector('.dropdown-items'));
|
2018-07-12 11:50:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export function motivationCancel() {
|
2018-10-09 11:43:51 +02:00
|
|
|
document.querySelectorAll('.motivation').forEach(hide);
|
|
|
|
show(document.querySelector('.dropdown-items'));
|
2018-07-12 11:50:47 +02:00
|
|
|
}
|