44511acfed
fix #2425
12 lines
265 B
JavaScript
12 lines
265 B
JavaScript
import $ from 'jquery';
|
|
|
|
export function showMotivation(event, state) {
|
|
event.preventDefault();
|
|
$(`.motivation.${state}`).show();
|
|
$('.dropdown-items').hide();
|
|
}
|
|
|
|
export function motivationCancel() {
|
|
$('.motivation').hide();
|
|
$('.dropdown-items').show();
|
|
}
|