From 067b7ed34c7f8cedc307b05853f8c94cf645afa7 Mon Sep 17 00:00:00 2001 From: herr kaste Date: Sun, 21 Feb 2016 00:57:46 +0100 Subject: [PATCH] Call _notifyPath instead of notifyPath in templatizer --- src/lib/template/templatizer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/template/templatizer.html b/src/lib/template/templatizer.html index 0b6cf5d397..19548d1c97 100644 --- a/src/lib/template/templatizer.html +++ b/src/lib/template/templatizer.html @@ -330,7 +330,7 @@ // Call extension point for Templatizer sub-classes dataHost._forwardInstancePath.call(dataHost, this, path, value); if (root in dataHost._parentProps) { - dataHost._templatized.notifyPath(dataHost._parentPropPrefix + path, value); + dataHost._templatized._notifyPath(dataHost._parentPropPrefix + path, value); } },