From 61d611c0833497df5fe8dcfb0c8174b0ad686410 Mon Sep 17 00:00:00 2001 From: Scott J Miles Date: Mon, 24 Aug 2015 17:39:12 -0700 Subject: [PATCH] do `registered` behaviors before invoking `registerFeatures` so `registered` can affect properties used by features (ref #2329) --- src/lib/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/base.html b/src/lib/base.html index 3e4a5e2fb2..b48d99c132 100644 --- a/src/lib/base.html +++ b/src/lib/base.html @@ -24,8 +24,8 @@ // `this` context is a prototype, not an instance registerCallback: function() { - this._registerFeatures(); // abstract this._doBehavior('registered'); // abstract + this._registerFeatures(); // abstract }, createdCallback: function() {