hoisting improvements

This commit is contained in:
zadam
2020-11-24 23:24:05 +01:00
parent 9889166afc
commit 61f30373d4
9 changed files with 47 additions and 8 deletions

View File

@@ -546,6 +546,11 @@ class NoteShort {
const labels = this.getLabels('cssClass');
return labels.map(l => l.value).join(' ');
}
getHoistedCssClass() {
const labels = this.getLabels('hoistedCssClass');
return labels.map(l => l.value).join(' ');
}
}
export default NoteShort;