You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
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) {