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) {
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) {