Files
GTA4RP/third-party/mexui/Core/Entry/DropDownItem.js
2022-03-16 17:06:57 -05:00

7 lines
195 B
JavaScript

mexui.Entry.DropDownItem = function(dropDown, text)
{
mexui.Component.Entry.call(this, dropDown, 1);
this.text = text;
};
mexui.util.extend(mexui.Entry.DropDownItem, mexui.Component.Entry);