Skip to content

Commit

Permalink
Replace disconnectedCallback stub since this change is breaking.
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Orvell committed Dec 11, 2017
1 parent 1b514b4 commit c8acc18
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lib/mixins/properties-mixin.html
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,16 @@
this._enableProperties();
}

/**
* Called when the element is removed from a document
* @suppress {missingProperties} Super may or may not implement the callback
*/
disconnectedCallback() {
if (super.disconnectedCallback) {
super.disconnectedCallback();
}
}

}

return PropertiesMixin;
Expand Down

0 comments on commit c8acc18

Please sign in to comment.