[RSS Feed/News] XF.Nestable does not make use of XF.findRelativeIf to find hidden input

Status
Not open for further replies.

XenForo

Administrative
  • Thread starter
  • Admin
  • #1
JavaScript:

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;
            }
needs to be
JavaScript:

Code:
            this.$valueInput = XF.findRelativeIf(this.options.valueInput, this.$target);
            if (!this.$valueInput.length)
            {...

Read more

ادامه مطلب...
 
Status
Not open for further replies.
Back
Top Bottom