polymer/polymer-element.html

18 lines
700 B
HTML
Raw Normal View History

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.
*
* @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
*/
const Element = Polymer.ElementMixin(HTMLElement);
Polymer.Element = Element;
2017-02-14 13:22:29 -06:00
</script>