-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathramen-datatable.html
60 lines (52 loc) · 1.25 KB
/
ramen-datatable.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<link rel="import" href="../polymer/polymer-element.html">
<dom-module id="ramen-datatable">
<template>
<style>
/* /*! CSS START */
/* END OF CSS */
</style>
</template>
<script>
/* /*! JS START */
/**
* `ramen-datatable` Description
*
* @summary ShortDescription.
* @customElement
* @polymer
* @extends {Polymer.Element}
*/
class RamenDatatable extends Polymer.Element {
/**
* String providing the tag name to register the element under.
*/
static get is() {
return 'ramen-datatable';
}
/**
* Object describing property-related metadata used by Polymer features
*/
static get properties() {
return {
};
}
/**
* Instance of the element is created/upgraded. Use: initializing state,
* set up event listeners, create shadow dom.
* @constructor
*/
constructor() {
super();
}
/**
* Use for one-time configuration of your component after local DOM is initialized.
*/
ready() {
super.ready();
Polymer.RenderStatus.afterNextRender(this, function () {
});
}
}
window.customElements.define(RamenDatatable.is, RamenDatatable); /* END OF JS */
</script>
</dom-module>