From b2128609ac8159a14224deba399144b3400c8c20 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Sun, 13 Nov 2016 08:16:12 +0100 Subject: Finally give in and use React, minor tweeks. Preact (a minimalistic React alternative) had too many bugs ... --- thirdparty/preact/src/options.js | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 thirdparty/preact/src/options.js (limited to 'thirdparty/preact/src/options.js') diff --git a/thirdparty/preact/src/options.js b/thirdparty/preact/src/options.js deleted file mode 100644 index 49869604e..000000000 --- a/thirdparty/preact/src/options.js +++ /dev/null @@ -1,27 +0,0 @@ -/** Global options - * @public - * @namespace options {Object} - */ -export default { - - /** If `true`, `prop` changes trigger synchronous component updates. - * @name syncComponentUpdates - * @type Boolean - * @default true - */ - //syncComponentUpdates: true, - - /** Processes all created VNodes. - * @param {VNode} vnode A newly-created VNode to normalize/process - */ - //vnode(vnode) { } - - /** Hook invoked after a component is mounted. */ - // afterMount(component) { } - - /** Hook invoked after the DOM is updated with a component's latest render. */ - // afterUpdate(component) { } - - /** Hook invoked immediately before a component is unmounted. */ - // beforeUnmount(component) { } -}; -- cgit v1.2.3