19 lines
484 B
JavaScript
19 lines
484 B
JavaScript
import { removeStylesOfHighlightedElements, setModalContent } from '../features/index.js';
|
|
|
|
/**
|
|
* @param {string} currentStep
|
|
*/
|
|
|
|
export const stats = (currentStep) => {
|
|
removeStylesOfHighlightedElements();
|
|
|
|
const $stats = document.getElementById('statsOfPerson');
|
|
// $header.classList.add('highlightedTrainingElement')
|
|
|
|
setModalContent({
|
|
keyTitle: 'newCombats.trainingModal.step5.title',
|
|
keyContent: 'newCombats.trainingModal.step5.text',
|
|
currentStep,
|
|
});
|
|
};
|