Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
huzunjie committed Jul 26, 2017
1 parent ca29fb7 commit 40d6cdc
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions lib/index.browser.js
@@ -1,6 +1,6 @@

/**
* chimee-helper-dom v0.1.1
* chimee-helper-dom v0.1.2
* (c) 2017 huzunjie
* Released under MIT
*/
Expand Down Expand Up @@ -2098,7 +2098,7 @@ module.exports = { "default": promise$1, __esModule: true };
});

/**
* chimee-helper-utils v0.1.1
* chimee-helper-utils v0.1.3
* (c) 2017 toxic-johann
* Released under MIT
*/
Expand Down Expand Up @@ -2279,7 +2279,7 @@ function addDelegate(el, selector, type, handler) {


var handlerWrap = function handlerWrap(e) {
var targetEls = findParents(e.srcElement, el, true);
var targetEls = findParents(e.target || e.srcElement, el, true);
var targetEl = query(selector, el, true).find(function (seEl) {
return targetEls.find(function (tgEl) {
return seEl === tgEl;
Expand Down
6 changes: 3 additions & 3 deletions lib/index.js
@@ -1,6 +1,6 @@

/**
* chimee-helper-dom v0.1.1
* chimee-helper-dom v0.1.2
* (c) 2017 huzunjie
* Released under MIT
*/
Expand Down Expand Up @@ -270,7 +270,7 @@ var CustEvent = function () {
}();

/**
* chimee-helper-utils v0.1.1
* chimee-helper-utils v0.1.3
* (c) 2017 toxic-johann
* Released under MIT
*/
Expand Down Expand Up @@ -451,7 +451,7 @@ function addDelegate(el, selector, type, handler) {


var handlerWrap = function handlerWrap(e) {
var targetEls = findParents(e.srcElement, el, true);
var targetEls = findParents(e.target || e.srcElement, el, true);
var targetEl = query(selector, el, true).find(function (seEl) {
return targetEls.find(function (tgEl) {
return seEl === tgEl;
Expand Down
2 changes: 1 addition & 1 deletion lib/index.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions lib/index.mjs
@@ -1,6 +1,6 @@

/**
* chimee-helper-dom v0.1.1
* chimee-helper-dom v0.1.2
* (c) 2017 huzunjie
* Released under MIT
*/
Expand Down Expand Up @@ -264,7 +264,7 @@ var CustEvent = function () {
}();

/**
* chimee-helper-utils v0.1.1
* chimee-helper-utils v0.1.3
* (c) 2017 toxic-johann
* Released under MIT
*/
Expand Down Expand Up @@ -445,7 +445,7 @@ function addDelegate(el, selector, type, handler) {


var handlerWrap = function handlerWrap(e) {
var targetEls = findParents(e.srcElement, el, true);
var targetEls = findParents(e.target || e.srcElement, el, true);
var targetEl = query(selector, el, true).find(function (seEl) {
return targetEls.find(function (tgEl) {
return seEl === tgEl;
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "chimee-helper-dom",
"version": "0.1.2",
"version": "0.1.3",
"description": "dom hanlders of chimee",
"main": "lib/index.js",
"module": "lib/index.mjs",
Expand Down

0 comments on commit 40d6cdc

Please sign in to comment.