2017-02-28 12:37:04 -06:00
|
|
|
<link rel="import" href="lib/mixins/element-mixin.html">
|
2017-02-14 13:22:29 -06:00
|
|
|
<script>
|
2017-02-28 18:19:24 -06:00
|
|
|
/**
|
|
|
|
* Base class that provides the core API for Polymer's meta-programming
|
|
|
|
* features including template stamping, data-binding, attribute deserialization,
|
|
|
|
* and property change observation.
|
|
|
|
*
|
2017-02-28 18:24:37 -06:00
|
|
|
* @polymerElement
|
|
|
|
* @memberof Polymer
|
2017-02-28 18:19:24 -06:00
|
|
|
* @extends HTMLElement
|
|
|
|
* @mixes Polymer.ElementMixin
|
|
|
|
* @summary Custom element base class that provides the core API for Polymer's
|
|
|
|
* key meta-programming features including template stamping, data-binding,
|
|
|
|
* attribute deserialization, and property change observation
|
|
|
|
*/
|
2017-02-28 18:26:19 -06:00
|
|
|
const Element = Polymer.ElementMixin(HTMLElement);
|
|
|
|
Polymer.Element = Element;
|
2017-02-14 13:22:29 -06:00
|
|
|
</script>
|