From cd9ad90d0513acb835d5bf65cc72210f1028d82d Mon Sep 17 00:00:00 2001 From: Jared Fox Date: Wed, 22 Jun 2016 13:30:04 -0400 Subject: [PATCH] fix webcomponent example issue #7056 (#7057) * fix webcomponent example issue #7056 * update fix issue #7056, remove unused web component callbacks --- examples/webcomponents/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/webcomponents/index.html b/examples/webcomponents/index.html index 6342690dc5..7eccc805bf 100644 --- a/examples/webcomponents/index.html +++ b/examples/webcomponents/index.html @@ -37,7 +37,7 @@ // Define WebComponent var proto = Object.create(HTMLElement.prototype, { - createdCallback: { + attachedCallback: { value: function() { var mountPoint = document.createElement('span'); this.createShadowRoot().appendChild(mountPoint);