Replace disconnectedCallback stub since this change is breaking.

This commit is contained in:
Steven Orvell
2017-12-11 11:44:13 -08:00
parent 1b514b4f9b
commit c8acc183c2
+10
View File
@@ -200,6 +200,16 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
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;