We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3971f9 commit 0b83827Copy full SHA for 0b83827
js/list.js
@@ -132,4 +132,13 @@ export default class List extends View {
132
}
133
134
135
+
136
+ /**
137
+ * Clear all rows
138
+ */
139
+ clear() {
140
+ while (this.$node.firstChild) {
141
+ this.$node.removeChild(this.$node.firstChild);
142
+ }
143
144
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@djthorpe/js-framework",
3
- "version": "0.0.25",
+ "version": "0.0.26",
4
"description": "Javascript Framework",
5
"main": "dist/js/index.js",
6
"scripts": {
0 commit comments