Skip to content

Commit

Permalink
cs
Browse files Browse the repository at this point in the history
  • Loading branch information
dgrammatiko committed Aug 11, 2024
1 parent 4ffc43c commit db81fb9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/media_source/system/js/core.es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -443,9 +443,9 @@ Joomla.isChecked = (isitchecked, form) => {
newForm = document.getElementById(form);
}

newForm.boxchecked.value = isitchecked
? parseInt(newForm.boxchecked.value, 10) + 1
: parseInt(newForm.boxchecked.value, 10) - 1;
newForm.boxchecked.value = isitchecked
? parseInt(newForm.boxchecked.value, 10) + 1
: parseInt(newForm.boxchecked.value, 10) - 1;

newForm.boxchecked.dispatchEvent(new CustomEvent('change', {
bubbles: true,
Expand Down

0 comments on commit db81fb9

Please sign in to comment.