Fix wrong prefix for a newly added class for disabled checkbox

The prefix for the plugin is 'ppcp', not 'ppc' as it mistakenly was. Updating this for a checkbox class.
This commit is contained in:
Danae Millan 2021-11-23 22:12:32 -03:00
parent 2ddd8518ca
commit a4846b64fe
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@
)
const disabledCheckboxes = document.querySelectorAll(
'.ppc-disabled-checkbox'
'.ppcp-disabled-checkbox'
)
function atLeastOneChecked(checkboxesNodeList) {