fix webcomponent example issue #7056 (#7057)

* fix webcomponent example issue #7056

* update fix issue #7056, remove unused web component  callbacks
This commit is contained in:
Jared Fox
2016-06-22 13:30:04 -04:00
committed by Jim
parent 4f00553c15
commit cd9ad90d05

View File

@@ -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);