Skip to content

Commit

Permalink
BUILD
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioricali committed May 11, 2022
1 parent fad4b7b commit 49883c3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
10 changes: 7 additions & 3 deletions dist/doz.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// [DOZ] Build version: 3.20.3
// [DOZ] Build version: 3.20.4
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
Expand Down Expand Up @@ -1619,7 +1619,11 @@ function createInstance() {
}
}

if (!newElement || newElement.__beforeCreateReturnsFalse) {
if (newElement && newElement.__beforeCreateReturnsFalse) {
newElement = undefined;
}

if (!newElement) {
$child = $child.nextElementSibling;
return "continue";
}
Expand Down Expand Up @@ -4240,7 +4244,7 @@ Object.defineProperties(Doz, {
enumerable: true
},
version: {
value: '3.20.3',
value: '3.20.4',
enumerable: true
},
tag: {
Expand Down
4 changes: 2 additions & 2 deletions dist/doz.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "doz",
"version": "3.20.3",
"version": "3.20.4",
"description": "A JavaScript framework for building UI, almost like writing in VanillaJS.",
"main": "dist/doz.js",
"module": "dist/esm/index.js",
Expand Down

0 comments on commit 49883c3

Please sign in to comment.