mirror of
https://github.com/Polymer/polymer.git
synced 2026-08-19 01:14:44 -05:00
Replace disconnectedCallback stub since this change is breaking.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user