onLoad(args: any) {
if(!args.element.classList.contains('e-other-month')){
let span: HTMLElement;
span = document.createElement('span');
span.textContent = "45 MT";
span.setAttribute('class', 'e-icons highlight');
args.element.appendChild(span);
}
}
|