XenForo
Administrative
- Thread starter
- Admin
- #1
JavaScript:
needs to be
JavaScript:
Read more
ادامه مطلب...
Code:
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:
Code:
this.$valueInput = XF.findRelativeIf(this.options.valueInput, this.$target);
if (!this.$valueInput.length)
{...
Read more
ادامه مطلب...