Remove helper comments

This commit is contained in:
Patrick Jentsch
2023-01-05 08:11:27 +01:00
parent 8b18571725
commit d6b772c2e8
9 changed files with 9 additions and 44 deletions

View File

@ -22,7 +22,6 @@ class JobInputList extends ResourceList {
});
}
// #region Mandatory getters and methods to implement
get item() {
return `
<tr class="clickable hoverable">
@ -65,9 +64,7 @@ class JobInputList extends ResourceList {
<ul class="pagination"></ul>
`.trim();
}
// #endregion
// #region Optional methods to implement
mapResourceToValue(jobInput) {
return {
'id': jobInput.id,
@ -79,7 +76,6 @@ class JobInputList extends ResourceList {
sort() {
this.listjs.sort('filename', {order: 'asc'});
}
// #endregion
onClick(event) {
let jobInputElement = event.target.closest('tr');