Revert "Update xml"

This reverts commit 9b8d1f2257.
This commit is contained in:
Vortrex
2021-01-26 04:16:05 -06:00
parent 9b8d1f2257
commit caa6b3986f
190 changed files with 5046 additions and 83 deletions

17
third-party/mexui/Core/Entry/TreeRow.js vendored Normal file
View File

@@ -0,0 +1,17 @@
mexui.Entry.TreeRow = function(tree, text)
{
mexui.Component.Entry.call(this, tree, 1);
this.open = true;
this.text = text;
this.rows = [];
};
mexui.util.extend(mexui.Entry.TreeRow, mexui.Component.Entry);
// model
mexui.Entry.TreeRow.prototype.row = function(text)
{
var entry = new mexui.Entry.TreeRow(this.control, text);
this.rows.push(entry);
return entry;
};