13
13
< link rel ="import " href ="../mixins/properties-mixin.html ">
14
14
15
15
< script >
16
- ( function ( ) {
16
+ ( function ( ) {
17
17
18
- 'use strict' ;
18
+ 'use strict' ;
19
19
20
- /**
21
- * Base class that provides a simple starting point for creating an element
22
- * that declares properties via the `properties` static getter that are
23
- * observed. Changes are reported via the `_propertiesChanged` method.
24
- * This element provides no specific support for rendering. Users are expected
25
- * to create a shadowRoot and put content into it and update it in whatever
26
- * way makes sense for the use case.
27
- *
28
- * @customElement
29
- * @polymer
30
- * @memberof Polymer
31
- * @constructor
32
- * @implements {Polymer_PropertiesMixin}
33
- * @extends HTMLElement
34
- * @appliesMixin Polymer.PropertiesMixin
35
- * @summary Base class that provides a simple starting point for creating an
36
- * element that declares properties via the `properties` static getter that
37
- * are observed
38
- */
39
- const PropertiesElement = Polymer . PropertiesMixin ( HTMLElement ) ;
40
- /**
41
- * @constructor
42
- * @implements {Polymer_PropertiesMixin}
43
- * @extends {HTMLElement }
44
- */
45
- Polymer . PropertiesElement = PropertiesElement ;
46
-
47
- } ) ( ) ;
48
- </ script >
20
+ /**
21
+ * Base class that provides a simple starting point for creating an element
22
+ * that declares properties via the `properties` static getter that are
23
+ * observed. Changes are reported via the `_propertiesChanged` method.
24
+ * This element provides no specific support for rendering. Users are expected
25
+ * to create a shadowRoot and put content into it and update it in whatever
26
+ * way makes sense for the use case.
27
+ *
28
+ * @customElement
29
+ * @polymer
30
+ * @memberof Polymer
31
+ * @constructor
32
+ * @implements {Polymer_PropertiesMixin}
33
+ * @extends HTMLElement
34
+ * @appliesMixin Polymer.PropertiesMixin
35
+ * @summary Base class that provides a simple starting point for creating an
36
+ * element that declares properties via the `properties` static getter that
37
+ * are observed
38
+ */
39
+ const PropertiesElement = Polymer . PropertiesMixin ( HTMLElement ) ;
40
+ Polymer . PropertiesElement = PropertiesElement ;
41
+ } ) ( ) ;
42
+ </ script >
0 commit comments