Reply to thread

[CODE=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;

            }[/CODE] needs to be

[CODE=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;

            }[/CODE]


Back
Top Bottom