mirror of
https://github.com/Polymer/polymer.git
synced 2025-02-25 18:55:30 -06:00
18 lines
700 B
HTML
18 lines
700 B
HTML
<link rel="import" href="lib/mixins/element-mixin.html">
|
|
<script>
|
|
/**
|
|
* 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
|
|
* @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;
|
|
</script> |