Skip to content

ElManagerFactory.isElContained incorrect return statement #228

Description

@eld0727

Instead of

isElContained: function(findEl){
    return this._el === findEl || $(this._el).has(findEl).length > 0;
}

should be

isElContained: function(findEl){
    return this._el[0] === findEl || $(this._el).has(findEl).length > 0;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions