This repository was archived by the owner on Apr 12, 2024. It is now read-only.
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Uncaught ReferenceError: Node is not defined #15329
Closed
Description
Hi, I all versions after 1.5.0 I am getting
Uncaught ReferenceError: Node is not defined
because the check for Node is not correct. Please update in next version that line:
var jqLiteContains = Node.prototype.contains || function(arg) {
to
var jqLiteContains = Node && Node.prototype.contains || function(arg) {