2018-02-28 16:07:52 +01:00
|
|
|
DS.showMotivation = function (state) {
|
2017-11-29 11:47:18 +01:00
|
|
|
$(".motivation." + state).show();
|
2017-08-30 17:28:58 +02:00
|
|
|
$(".dropdown-items").hide();
|
2017-11-29 11:47:18 +01:00
|
|
|
};
|
2017-08-30 17:28:58 +02:00
|
|
|
|
2018-02-28 16:07:52 +01:00
|
|
|
DS.motivationCancel = function () {
|
2017-08-30 17:28:58 +02:00
|
|
|
$(".motivation").hide();
|
|
|
|
$(".dropdown-items").show();
|
2017-11-29 11:47:18 +01:00
|
|
|
};
|