From 7c83df5fbf19dd360b2f106155c92eace2806fa3 Mon Sep 17 00:00:00 2001 From: Steven Orvell Date: Mon, 3 Aug 2015 14:44:45 -0700 Subject: [PATCH] Fixes #1673: ensure instance effects exist before marshaling attributes. --- polymer.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/polymer.html b/polymer.html index f94778dd49..b1dafa7c2d 100644 --- a/polymer.html +++ b/polymer.html @@ -71,12 +71,12 @@ this._popHost(); // concretize template references this._marshalAnnotationReferences(); - // install host attributes - this._marshalHostAttributes(); // setup debouncers this._setupDebouncers(); // concretize effects on instance this._marshalInstanceEffects(); + // install host attributes + this._marshalHostAttributes(); // acquire instance behaviors this._marshalBehaviors(); // acquire initial instance attribute values