aboutsummaryrefslogtreecommitdiff
path: root/node_modules.patch
diff options
context:
space:
mode:
authorbozo.kopic <bozo@kopic.xyz>2022-03-22 01:31:27 +0100
committerbozo.kopic <bozo@kopic.xyz>2022-03-22 01:31:27 +0100
commitcc4ba3b063f14943579ffbfe416828590f70ae0a (patch)
treeaf2127920fb57603206ca670beb63b5d58650fb8 /node_modules.patch
parentc594b1fca854a7b9fb73d854a9830143cd1032fc (diff)
WIP major rewrite
Diffstat (limited to 'node_modules.patch')
-rw-r--r--node_modules.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/node_modules.patch b/node_modules.patch
deleted file mode 100644
index 716a9c9..0000000
--- a/node_modules.patch
+++ /dev/null
@@ -1,34 +0,0 @@
---- node_modules/virtual-dom/vdom/apply-properties.js
-+++ node_modules/virtual-dom/vdom/apply-properties.js
-@@ -36,9 +36,7 @@
- node.removeAttribute(attrName)
- }
- } else if (propName === "style") {
-- for (var i in previousValue) {
-- node.style[i] = ""
-- }
-+ node.style = ""
- } else if (typeof previousValue === "string") {
- node[propName] = ""
- } else {
-
-
---- node_modules/virtual-dom/virtual-hyperscript/index.js
-+++ node_modules/virtual-dom/virtual-hyperscript/index.js
-@@ -40,16 +40,6 @@
- props.namespace = undefined;
- }
-
-- // fix cursor bug
-- if (tag === 'INPUT' &&
-- !namespace &&
-- props.hasOwnProperty('value') &&
-- props.value !== undefined &&
-- !isHook(props.value)
-- ) {
-- props.value = softSetHook(props.value);
-- }
--
- transformProperties(props);
-
- if (children !== undefined && children !== null) {