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