Comparing version 3.0.0-alpha.7 to 3.0.0-alpha.8
/** | ||
* Dom7 3.0.0-alpha.7 | ||
* Dom7 3.0.0-alpha.8 | ||
* Minimalistic JavaScript library for DOM manipulation, with a jQuery-compatible API | ||
@@ -10,3 +10,3 @@ * https://framework7.io/docs/dom7.html | ||
* | ||
* Released on: July 14, 2020 | ||
* Released on: August 24, 2020 | ||
*/ | ||
@@ -497,4 +497,6 @@ 'use strict'; | ||
function handleLiveEvent(e) { | ||
console.log(1); | ||
var target = e.target; | ||
if (!target) return; | ||
console.log(2, target); | ||
var eventData = e.target.dom7EventData || []; | ||
@@ -541,2 +543,3 @@ | ||
}); | ||
console.log(el, event, handleEvent); | ||
el.addEventListener(event, handleEvent, capture); | ||
@@ -543,0 +546,0 @@ } |
/** | ||
* Dom7 3.0.0-alpha.7 | ||
* Dom7 3.0.0-alpha.8 | ||
* Minimalistic JavaScript library for DOM manipulation, with a jQuery-compatible API | ||
@@ -10,3 +10,3 @@ * https://framework7.io/docs/dom7.html | ||
* | ||
* Released on: July 14, 2020 | ||
* Released on: August 24, 2020 | ||
*/ | ||
@@ -493,4 +493,6 @@ import { getWindow, getDocument } from 'ssr-window'; | ||
function handleLiveEvent(e) { | ||
console.log(1); | ||
var target = e.target; | ||
if (!target) return; | ||
console.log(2, target); | ||
var eventData = e.target.dom7EventData || []; | ||
@@ -537,2 +539,3 @@ | ||
}); | ||
console.log(el, event, handleEvent); | ||
el.addEventListener(event, handleEvent, capture); | ||
@@ -539,0 +542,0 @@ } |
{ | ||
"name": "dom7", | ||
"version": "3.0.0-alpha.7", | ||
"version": "3.0.0-alpha.8", | ||
"description": "Minimalistic JavaScript library for DOM manipulation, with a jQuery-compatible API", | ||
@@ -5,0 +5,0 @@ "sideEffects": false, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
219351
5091