TickTackk
Well-known member
- Affected version
- 2.2.2
JavaScript:
this.$valueInput = this.$target.find(this.options.valueInput);
if (!this.$valueInput.length)
{
console.error('No value input found matching selector %s', this.options.valueInput);
return false;
}
JavaScript:
this.$valueInput = XF.findRelativeIf(this.options.valueInput, this.$target);
if (!this.$valueInput.length)
{
console.error('No value input found matching selector %s', this.options.valueInput);
return false;
}