From 9a3cd7174f0a559282375f236f5053c9f528978b Mon Sep 17 00:00:00 2001 From: Patrick Steele-Idem Date: Wed, 1 Feb 2017 11:00:53 -0700 Subject: [PATCH] Added .w() method to AsyncVDOMBuilder.js --- runtime/vdom/AsyncVDOMBuilder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/vdom/AsyncVDOMBuilder.js b/runtime/vdom/AsyncVDOMBuilder.js index 0a718d6e1..21711aba7 100644 --- a/runtime/vdom/AsyncVDOMBuilder.js +++ b/runtime/vdom/AsyncVDOMBuilder.js @@ -314,6 +314,6 @@ proto.e = proto.element; proto.be = proto.beginElement; proto.ee = proto.endElement; proto.t = proto.text; -proto.h = proto.write = proto.html; +proto.h = proto.w = proto.write = proto.html; module.exports = AsyncVDOMBuilder;