Skip to content

Commit

Permalink
Add back disconnectedCallback.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpschaaf committed Dec 5, 2017
1 parent b158e08 commit fa40f20
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/mixins/properties-mixin.html
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,15 @@
this._enableProperties();
}

/**
* Called when the element is removed from a document
*/
disconnectedCallback() {
if (super.disconnectedCallback) {
super.disconnectedCallback();
}
}

}

return PropertiesMixin;
Expand Down

0 comments on commit fa40f20

Please sign in to comment.