Add attribute modifiers + improve translation keys for enums and sets

This commit is contained in:
Misode
2019-09-13 12:51:03 +02:00
parent 07a103fb64
commit 9e97ccd363
5 changed files with 107 additions and 93 deletions
-3
View File
@@ -199,9 +199,6 @@ function removeFromSet(el, array) {
let index = parent[array].indexOf($(el).attr('value'));
if (index > -1) {
parent[array].splice(index, 1);
if (parent[array].length === 0) {
delete parent[array];
}
invalidated();
}
}